0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00
penpot/scripts/watch-bench.clj

16 lines
322 B
Clojure
Raw Normal View History

2016-04-07 14:51:40 -05:00
(require '[cljs.build.api :as b])
(b/watch
(b/inputs "dev" "vendor")
2016-04-07 14:51:40 -05:00
{:main 'bench.core
:output-to "out/bench.js"
:output-dir "out"
:parallel-build false
:optimizations :simple
:static-fns true
2016-04-07 14:51:40 -05:00
:target :nodejs
:language-in :ecmascript6
:language-out :ecmascript5
:pretty-print true
2016-04-07 14:51:40 -05:00
:verbose true})