mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
15 lines
376 B
Clojure
15 lines
376 B
Clojure
(require '[cljs.build.api :as b])
|
|
|
|
(b/watch (b/inputs "src" "test")
|
|
{:main 'uxbox.tests.main
|
|
:parallel-build false
|
|
:output-to "out/tests.js"
|
|
:source-map "out/tests.js.map"
|
|
:output-dir "out/tests"
|
|
:optimizations :simple
|
|
:static-fns true
|
|
:pretty-print true
|
|
:target :nodejs
|
|
:language-in :ecmascript6
|
|
:language-out :ecmascript5
|
|
:verbose true})
|