cljs-dev

ClojureScript compiler & std lib dev, https://clojurescript.org/community/dev
afhammad 2020-04-19T13:26:20.164100Z

@dnolen I'm trying out Krell (i'm new to the whole react-native ecosystem, and been away from CLJS for a while), I've installed an npm dependency, and requiring it appears to find the namespace (doesn't throw a "No such namespace") but it's value is just nil. Does it need to be added to either of deps.edn or build.edn?

cljs.user=> (require 'react-native-calendars)
nil
cljs.user=> (type react-native-calendars)
nil
cljs.user=> (require 'react-native)
nil
cljs.user=> (type react-native)
#object[Object]
Thanks

dnolen 2020-04-19T13:50:57.164900Z

You can’t just install a dep and require

dnolen 2020-04-19T13:51:10.165300Z

Metro needs to rebuild

afhammad 2020-04-19T14:18:21.166Z

Have tried restarting both Metro npx react-native run-ios and Krell but still no luck.

mfikes 2020-04-19T20:58:36.166800Z

Release notes rough draft now exists πŸ™‚ https://github.com/clojure/clojurescript-site/blob/early-2020-release/content/news/2020-04-22-release.adoc

πŸ‘ 1
mfikes 2020-04-19T20:59:44.167400Z

Discovered a bug with the new iterator support: https://clojure.atlassian.net/projects/CLJS/issues/CLJS-3230