This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-09-01
Channels
- # announcements (10)
- # aws (1)
- # babashka (19)
- # beginners (104)
- # calva (50)
- # cider (17)
- # cljs-dev (135)
- # cljsrn (56)
- # clojure (240)
- # clojure-dev (4)
- # clojure-europe (19)
- # clojure-nl (2)
- # clojure-uk (7)
- # clojurescript (22)
- # conjure (2)
- # css (1)
- # cursive (10)
- # data-science (1)
- # datomic (60)
- # emacs (2)
- # events (2)
- # exercism (1)
- # figwheel-main (3)
- # fulcro (13)
- # graalvm (5)
- # gratitude (1)
- # inf-clojure (4)
- # introduce-yourself (5)
- # jobs-discuss (21)
- # lsp (36)
- # malli (6)
- # meander (8)
- # missionary (12)
- # off-topic (14)
- # pathom (13)
- # pedestal (10)
- # polylith (42)
- # re-frame (5)
- # reagent (12)
- # reitit (3)
- # releases (8)
- # sci (10)
- # shadow-cljs (37)
- # sql (5)
- # tools-deps (6)
fig:main port from shadow-cljs is going great, but I am in the middle of trying to figure sth out and thought I would drop in and see if anyone Just Knows(tm) how to handle bizarro NPM requires like
["@react-navigation/native" :refer [NavigationContainer]]
. I tried a few things but no luck so far, and not the easiest thing in the world to google. Thx! 🙏Hang on. I checked react-navigation
's doc. Do I just require the individual bits?
npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view
, I guess recusively going after stuff like masked-view
?Hang on. I checked react-navigation
's doc. Do I just require the individual bits?
npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view
, I guess recusively going after stuff like masked-view
?OK, it seems the dependencies specified in the instructions point to a CLJS before the latest work to support a Clojure change.
{:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.14"}}
:paths ["src" "target"]}
Following https://clojurescript.org/news/2021-04-06-release, I switched to 1.10.844 and all is well.👍 4