dev build

This commit is contained in:
Michiel Borkent 2025-08-20 11:49:09 +02:00
parent 6eb22f2cf4
commit bef56ddf68
3 changed files with 41 additions and 9 deletions

View file

@ -69,4 +69,7 @@
* :action - compile action, defaults to release, but may also be compile or watch"
[{:keys [action
args] :or {action "release"}}]
(build* (format "-M -m shadow.cljs.devtools.cli --force-spawn %s main %s" action (str/join " " args))))
(build* (format "-M -m shadow.cljs.devtools.cli --force-spawn %s main %s" action (str/join " " args)))
(when (= "release" action)
(println "Also building dev release build")
(build* (format "-M -m shadow.cljs.devtools.cli --force-spawn %s dev %s" action (str/join " " args)))))