0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 00:40:30 -05:00
penpot/frontend/scripts/watch-bench.clj

16 lines
324 B
Clojure
Raw Normal View History

2016-04-07 14:51:40 -05:00
(require '[cljs.build.api :as b])
(b/watch
2016-06-22 13:20:17 -05:00
(b/inputs "dev" "src")
2016-04-07 14:51:40 -05:00
{:main 'bench.core
:output-to "out/bench.js"
2016-06-22 13:20:17 -05:00
:output-dir "out/bench"
2016-04-07 14:51:40 -05:00
:parallel-build false
:optimizations :none
:static-fns false
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})