2016-04-14 21:39:50 +03:00
|
|
|
(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
|
2016-01-12 16:54:31 +02:00
|
|
|
: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)
|