0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 00:40:30 -05:00
penpot/scripts/watch-worker.clj

18 lines
440 B
Clojure
Raw Normal View History

(require '[cljs.build.api :as b])
(b/watch
2016-06-22 13:20:17 -05:00
(b/inputs "src")
{:main 'uxbox.worker
:parallel-build false
:warnings {:ns-var-clash false}
:output-to "resources/public/js/worker.js"
2016-06-22 13:20:17 -05:00
:source-map "resources/public/js/worker.js.map"
:output-dir "resources/public/js/worker"
:asset-path "js"
:optimizations :simple
:static-fns true
:language-in :ecmascript6
:language-out :ecmascript5
:pretty-print true
:verbose true})