Fix #60: dev task

This commit is contained in:
Michiel Borkent 2023-05-13 10:45:10 +02:00
parent 1cd75fba28
commit 0fd1342144
2 changed files with 5 additions and 3 deletions

View file

@ -67,5 +67,6 @@
Options:
* :action - compile action, defaults to release, but may also be compile or watch"
[{:keys [action] :or {action "release"}}]
(build* (format "-M -m shadow.cljs.devtools.cli --force-spawn %s main" action)))
[{:keys [action
args] :or {action "release"}}]
(build* (format "-M -m shadow.cljs.devtools.cli --force-spawn %s main %s" action (str/join " " args))))