Many changes on scripts.

This commit is contained in:
Andrey Antukh 2016-06-22 21:20:17 +03:00
parent bced1ebd2f
commit d5df7eba3b
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
10 changed files with 28 additions and 22 deletions

View file

@ -4,17 +4,18 @@
(let [start (System/nanoTime)]
(b/build
(b/inputs "src" "vendor")
(b/inputs "src")
{:main 'uxbox.worker
:parallel-build false
:warnings {:ns-var-clash 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"
:parallel-build false
:optimizations :simple
:static-fns true
:pretty-print true
:language-in :ecmascript6
:language-out :ecmascript5
:pretty-print true
:verbose true})
(println "... done. Elapsed" (/ (- (System/nanoTime) start) 1e9) "seconds"))