mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
16 lines
406 B
Clojure
16 lines
406 B
Clojure
(require '[cljs.build.api :as b])
|
|
|
|
(b/watch
|
|
(b/inputs "src")
|
|
{:main 'uxbox.worker
|
|
:parallel-build false
|
|
:output-to "resources/public/js/worker.js"
|
|
: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})
|