Minor reorganization of vendor dependencies.

This commit is contained in:
Andrey Antukh 2017-03-06 18:38:17 +01:00
parent fa7b0987a1
commit c4a5d26e8b
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95
16 changed files with 6296 additions and 22 deletions

View file

@ -18,7 +18,6 @@
:output-to "dist/js/main.js"
:source-map "dist/js/main.js.map"
:output-dir "dist/js/main"
:externs ["externs/main.js"]
:closure-defines defines
:language-in :ecmascript6
:language-out :ecmascript5
@ -28,10 +27,9 @@
:elide-asserts true
:pretty-print debug?
:verbose true
:pseudo-names debug?
:compiler-stats true})
:pseudo-names debug?})
(let [start (System/nanoTime)]
(println "Building ...")
(b/build (b/inputs "src") options)
(b/build (b/inputs "src" "vendor") options)
(println "... done. Elapsed" (/ (- (System/nanoTime) start) 1e9) "seconds"))