cljsjs

gadfly361 2017-11-09T08:18:06.000137Z

@kristian507 🙌 thank you!

2017-11-09T23:02:48.000105Z

I get failures trying to use cljsjs/react-select due to cljsjs/react-input-autosize having this “requires” line https://github.com/cljsjs/packages/blob/master/react-input-autosize/build.boot#L27

2017-11-09T23:03:11.000041Z

It :requires ["react" "prop-types"] when the package is being provided as “cljsjs.react”, not “react”

2017-11-09T23:06:25.000086Z

this was changed at some point to include “react”, but older versions of the cljsjs/react only had a provides of “cljsjs.react”

2017-11-09T23:14:22.000016Z

Going to try to use a higher version of react with reagent I think to see if it will resolve

2017-11-09T23:24:32.000148Z

The workaround for me was to just use a higher version of a v15.x react than the one that was packaged with reagent 0.7.0

2017-11-09T23:24:53.000117Z

I used the same one as cljsjs/react-input-autosize depends on and I guess it “provides” the “react” namespace as expected

2017-11-09T23:25:37.000212Z

I’d be interested to hear if anyone has found a way to use react-bootstrap with reagent 0.8x and React 16 yet

2017-11-09T23:25:48.000039Z

(that’s what is preventing me from moving forward at the moment)