From 9e15451e84bd54f432b1bc4808554e779d377857 Mon Sep 17 00:00:00 2001 From: Peter Szalai Date: Sat, 13 May 2023 09:15:10 +0200 Subject: [PATCH] fix(#60): remove command-line args from shadow:watch Not sure this is right solution (I'm new to CLJ), but it solved the problem of not running `bb dev`. --- bb.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.edn b/bb.edn index 7f49334..62723ae 100644 --- a/bb.edn +++ b/bb.edn @@ -18,7 +18,7 @@ (fs/delete-tree ".shadow-cljs"))} shadow:watch {:doc "Development build. Starts webserver and watches for changes." - :task (build/build *command-line-args* {:action "watch"})} + :task (build/build {:action "watch"})} http-server {:doc "Starts http server for serving static files" :requires ([babashka.http-server :as http])