You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the cljs compiler from adzerk/boot-cljs with the :modules option added, the modules will still be in the cljs_base.js file when compiled, and not in their own assigned files.
I updated the dummy repo.
Looks like when you have multiple .cljs.edn files and and you want to have a module for each, the only module that will be created is for the first .cljs.edn file in alphabetical order. The other(s) will be added to the base_cljs.js file.
Hey. I have an issue with the cljs task.
Using the cljs compiler from
adzerk/boot-cljs
with the:modules
option added, the modules will still be in thecljs_base.js
file when compiled, and not in their own assigned files.When adding these compiler options to the
cljs
task, the assigned.js
files for the modules will be created, but they will not contain any code.Using these options directly with the
cljs.build.api/build
function will work as wanted.I've set up a dummy project with some example code to display the bug https://github.com/mariuene/cljs-boot-modules-issue
The text was updated successfully, but these errors were encountered: