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