reitit/scripts/build.clj
2017-08-07 14:15:45 +03:00

13 lines
304 B
Clojure

(require 'cljs.closure)
(cljs.closure/build
; Includes :source-paths and :test-paths already
"test"
{:main "reitit.runner"
:output-to "target/generated/js/out/tests.js"
:source-map true
:output-dir "target/generated/js/out"
:optimizations :none
:target :nodejs})
(shutdown-agents)