boot

:boot-clj: https://boot-clj.github.io/ — build tooling for Clojure. Dev chat in #boot-dev
nitaai 2019-11-04T10:56:38.016100Z

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.

flyboarder 2019-11-04T16:17:45.017700Z

@matuskmit1 you would need to move them to their own path and not include that path in boot, or look into the .bootignore file

nitaai 2019-11-05T10:14:00.019400Z

.bootignore worked like a charm. thanks