bhauman / lein-figwheel

Figwheel builds your ClojureScript code and hot loads it into the browser as you are coding!
Eclipse Public License 1.0
2.88k stars 210 forks source link

cljs-base support #611

Closed rosejn closed 6 years ago

rosejn commented 6 years ago

When compiling into multiple modules the Clojurescript compiler now has a concept of the cljs-base module, which gets all namespaces not explicitly placed in other modules. The documentation recommends a module specification that only includes an :output-to setting to specify where the module should be written to, but Figwheel complains with an error saying that modules require an :entries key. Hitting 's' to start anyway moves on and everything works fine, but the error checker should probably take this into account now.

bhauman commented 6 years ago

https://github.com/bhauman/lein-figwheel/issues/608

already implemented in 0.5.14-SNAPSHOT

rosejn commented 6 years ago

Awesome, thanks!