misc: more speed improvement on develop images building

This commit is contained in:
Andrey Antukh 2019-07-04 09:40:17 +02:00
parent d8e205ec25
commit d908cf566a
6 changed files with 27 additions and 11 deletions

View file

@ -110,6 +110,18 @@
build
(:worker figwheel-builds))))
(defmethod task "build-all"
[args]
(task ["build" "main"])
(task ["build" "view"])
(task ["build" "worker"]))
(defmethod task "dist-all"
[args]
(task ["dist" "main"])
(task ["dist" "view"])
(task ["dist" "worker"]))
;;; Build script entrypoint. This should be the last expression.
(task *command-line-args*)