keechma

Keechma stack. Mention @U050986L9 or @U2J1PHYNM if you have any questions
priornix 2018-09-29T00:35:39.000100Z

@mihaelkonjevic I've tried the sample project, it has the same problem. The UI and controller isn't reloaded when I changed its content.

priornix 2018-09-29T00:38:12.000100Z

The UI is only re-rendered upon browser refresh, hot reloading does not work with shadow-cljs. Anyone else using keechma with shadow-cljs?

priornix 2018-09-29T07:30:42.000100Z

Anyway, @thheller has replied that this not yet supported in shadow-cljs https://github.com/thheller/shadow-cljs/issues/349

priornix 2018-09-29T07:31:42.000100Z

Currently, hot reload works in figwheel because CLJS supports :recompile-dependents by default

priornix 2018-09-29T07:34:00.000100Z

Workaround is to not use those chained references from one namespace to another (ns a {:a another/a}) is totally fine since that ns will depend on another both will be reloaded.

priornix 2018-09-29T07:36:28.000100Z

Or just to place the definitions in one namespace

👍 1