0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-25 07:58:49 -05:00
penpot/scripts/watch-tests.clj

14 lines
324 B
Clojure
Raw Normal View History

(require '[cljs.build.api :as b])
2015-06-18 19:35:50 +02:00
2016-04-07 22:51:40 +03:00
(b/watch (b/inputs "src" "vendor" "test")
2016-02-02 21:33:32 +02:00
{:main 'uxbox.test-runner
:output-to "out/tests.js"
:output-dir "out"
:parallel-build false
2016-04-16 11:11:28 +03:00
:optimizations :none
2015-06-18 19:35:50 +02:00
:pretty-print true
2016-02-02 21:33:32 +02:00
:target :nodejs
2016-04-16 11:11:28 +03:00
:language-in :ecmascript6
2015-06-18 19:35:50 +02:00
:language-out :ecmascript5
:verbose true})