mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 14:26:40 +02:00
Minor reorganization of vendor dependencies.
This commit is contained in:
parent
fa7b0987a1
commit
c4a5d26e8b
16 changed files with 6296 additions and 22 deletions
|
@ -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"))
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
:all-builds
|
||||
[{:id "main"
|
||||
:figwheel {:on-jsload "uxbox.main.ui/init"}
|
||||
:source-paths ["src"]
|
||||
:source-paths ["src" "vendor"]
|
||||
:compiler
|
||||
{:main 'uxbox.main
|
||||
:cache-analysis false
|
||||
|
@ -32,7 +32,7 @@
|
|||
|
||||
{:id "view"
|
||||
:figwheel {:on-jsload "uxbox.view.ui/init"}
|
||||
:source-paths ["src"]
|
||||
:source-paths ["src" "vendor"]
|
||||
:compiler
|
||||
{:main 'uxbox.view
|
||||
:parallel-build false
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
(require
|
||||
'[cljs.repl]
|
||||
'[cljs.repl.node])
|
||||
(require '[cljs.repl :as repl])
|
||||
(require '[cljs.repl.node :as node])
|
||||
|
||||
(cljs.repl/repl
|
||||
(cljs.repl.node/repl-env)
|
||||
:output-dir "out"
|
||||
:cache-analysis true)
|
||||
(def options {:output-dir "out/repl"})
|
||||
|
||||
(repl/repl* (node/repl-env) options)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue