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

15 lines
321 B
Clojure

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