0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-26 16:39:49 -05:00
penpot/frontend/scripts/watch-tests.clj

18 lines
383 B
Clojure
Raw Normal View History

(require '[cljs.build.api :as b])
2015-06-18 19:35:50 +02:00
2017-03-01 20:08:26 +01:00
(def options
2016-06-21 19:31:35 +03:00
{:main 'uxbox.tests.main
:parallel-build false
2016-06-21 19:31:35 +03:00
:output-to "out/tests.js"
2017-03-01 20:08:26 +01:00
:source-map true
2016-06-21 19:31:35 +03:00
:output-dir "out/tests"
2017-03-01 20:08:26 +01:00
:optimizations :none
2016-06-21 19:31:35 +03:00
:static-fns true
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})
2017-03-01 20:08:26 +01:00
(b/watch (b/inputs "src" "test") options)