Hello. Can someone please tell me how do I exclude cljs files from :source-paths? They are all inside a specific directory within src.
I have watch-reload setup with clojure.tools.namespace which also triggers when cljs files change and creates a race condition with shadow-cljs watch-reload process running simultaneously.
@matuskmit1 you would need to move them to their own path and not include that path in boot, or look into the .bootignore file
.bootignore worked like a charm. thanks