This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-08
Channels
- # admin-announcements (22)
- # beginners (28)
- # boot (8)
- # cider (9)
- # cljs-dev (1)
- # cljs-site (3)
- # cljsjs (6)
- # cljsrn (6)
- # clojure (20)
- # clojure-germany (3)
- # clojure-russia (16)
- # clojure-uk (6)
- # clojurescript (106)
- # datascript (9)
- # datomic (19)
- # devcards (4)
- # dirac (42)
- # docker (4)
- # emacs (3)
- # hoplon (89)
- # jobs-rus (1)
- # keechma (6)
- # lein-figwheel (1)
- # leiningen (1)
- # luminus (11)
- # off-topic (1)
- # om (1)
- # om-next (1)
- # onyx (19)
- # other-languages (37)
- # parinfer (1)
- # proton (1)
- # reagent (9)
- # rethinkdb (17)
- # rum (2)
I'm trying to get reagent set up with react-with-addons for testing. I'm trying the following but I get a JSC_DUPLICATE_EXTERN_INPUT
error.
[cljsjs/react-with-addons "15.0.2-0"]
[reagent "0.6.0-alpha2" :exclusions [cljsjs/react]]
@jupl: Reagent depends on cljsjs/react-dom and cljsjs/react-dom-server so you need to exlude those. lein deps tree
or boot show -d
are you friends when trying to exclude stuff.
So the way I would go about it is for reagent to exclude react-dom and react-dom-server, then on each of those exclude react?
@jupl: Yes.
Another alternative would be to use global exclusion to cljsjs/react.
This is the way recommended by cljsjs/react readme currently.