fix: narrow CLJS watch path to avoid infinite recompile loop

Watch path `example/todomvc` included the `js/` output directory,
causing each compile to trigger another. Narrowed to
`example/todomvc/pocketbook` (source only).
This commit is contained in:
Florian Schroedl
2026-04-16 19:51:48 +02:00
parent c971988ce9
commit 4510b6f736

View File

@@ -26,4 +26,4 @@
:extra-deps {org.clojure/clojurescript {:mvn/version "1.11.132"} :extra-deps {org.clojure/clojurescript {:mvn/version "1.11.132"}
com.cognitect/transit-cljs {:mvn/version "0.8.280"} com.cognitect/transit-cljs {:mvn/version "0.8.280"}
org.clojure/core.async {:mvn/version "1.7.701"}} org.clojure/core.async {:mvn/version "1.7.701"}}
:main-opts ["-m" "cljs.main" "-co" "build.edn" "-w" "src:example/todomvc" "-c"]}}} :main-opts ["-m" "cljs.main" "-co" "build.edn" "-w" "src:example/todomvc/pocketbook" "-c"]}}}