mirror of
https://github.com/penpot/penpot.git
synced 2025-01-25 07:58:49 -05:00
13 lines
282 B
Clojure
13 lines
282 B
Clojure
(require '[cljs.build.api :as b])
|
|
|
|
(b/build
|
|
(b/inputs "vendor" "dev")
|
|
{:main 'bench.core
|
|
:output-to "out/bench.js"
|
|
:output-dir "out"
|
|
:parallel-build false
|
|
:optimizations :simple
|
|
:language-in :ecmascript5
|
|
:language-out :ecmascript5
|
|
:target :nodejs
|
|
:verbose true})
|