helix

https://github.com/Lokeh/helix
Jakub Holý 2020-07-03T17:15:23.282Z

Hi! How do I know which version of react-dom do I need to install? Thank you!

lilactown 2020-07-03T17:26:54.282500Z

helix currently defaults to 16.13.1, but anything above that should work as well

lilactown 2020-07-03T17:28:01.283700Z

I am not sure without testing that it would work with anything less than 16.13.1 but my hunch is that it would

lilactown 2020-07-03T17:29:16.284300Z

ah yeah, React Hooks were added in 16.8 so you'll at least want that

Jakub Holý 2020-07-03T17:38:23.284500Z

Thanks!

Jakub Holý 2020-07-03T17:44:47.285200Z

I am getting > The required namespace "helix.core" is not available from shadow-cljs. Do I need to add helix somewhere else than deps.edn, eg. into shadow-cljs.edn?

lilactown 2020-07-03T17:48:03.286400Z

shadow-cljs by default looks for dependencies inside of the shadow-cljs.edn file. you can tell shadow-cljs to use deps.edn to build a classpath instead by using the :deps true flag in your shadow-cljs.edn file

Jakub Holý 2020-07-03T17:52:58.286800Z

thanks a lot!!!