0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-15 01:01:30 -05:00
penpot/scripts/watch-worker.clj
2016-06-12 13:38:18 +03:00

15 lines
370 B
Clojure

(require '[cljs.build.api :as b])
(b/watch
(b/inputs "src" "vendor")
{:main 'uxbox-worker.main
:output-to "resources/public/js/worker.js"
:output-dir "resources/public/js/worker"
:asset-path "js"
:parallel-build false
:optimizations :simple
:static-fns true
:language-in :ecmascript6
:language-out :ecmascript5
:pretty-print true
:verbose true})