From 4510b6f736624a4c304bc184db0db7b120dd9955 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Thu, 16 Apr 2026 19:51:48 +0200 Subject: [PATCH] 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). --- deps.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.edn b/deps.edn index 78ac008..5da82c5 100644 --- a/deps.edn +++ b/deps.edn @@ -26,4 +26,4 @@ :extra-deps {org.clojure/clojurescript {:mvn/version "1.11.132"} com.cognitect/transit-cljs {:mvn/version "0.8.280"} 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"]}}}