This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-08
Channels
- # aatree (3)
- # announcements (1)
- # architecture (5)
- # beginners (27)
- # boot (22)
- # cider (17)
- # cljsrn (8)
- # clojure (93)
- # clojure-canada (1)
- # clojure-dev (7)
- # clojure-nl (10)
- # clojure-poland (216)
- # clojure-russia (35)
- # clojurescript (163)
- # community-development (6)
- # cursive (25)
- # datavis (6)
- # datomic (18)
- # dirac (10)
- # dysphemism (4)
- # editors (3)
- # editors-rus (1)
- # emacs (15)
- # hoplon (124)
- # instaparse (25)
- # jobs (10)
- # ldnclj (78)
- # lein-figwheel (11)
- # leiningen (6)
- # off-topic (20)
- # om (149)
- # onyx (2)
- # parinfer (5)
- # portland-or (1)
- # proton (62)
- # quil (2)
- # re-frame (8)
- # spacemacs (4)
- # yada (20)
@adamfrey, @mjmeintjes, I've had the same problem with require
ing assets
requiring works for the first time, but on reload it fails; I also ended up using defonce
to get around this, which works well enough
I created an issue to track this problem, would be nice to get to the bottom of this: https://github.com/mjmeintjes/boot-react-native/issues/29
by the way, what's the exact reason of needing to set a global js var as in (aset js/global "Animatable" (js/require "react-native-animatable/index.js"))
when using Google Closure? Something todo with externs?
Luno (https://github.com/alwx/luno-react-native) has been updated to the last version of React Native (0.20.0-rc1). I also improved scene switching and replaced IntentAndroid and LinkingIOS with new Linking class. Enjoy
@alwx, awesome!
how do you deal with rn prereleases? in my experience it's a pain in the ass with npm, because other dependencies (like animatable) depend on specific version ranges for rn
... and npm doesn't recognize -rc1 as a valid version range apparently