reitit/scripts/build.clj

14 lines
304 B
Clojure
Raw Permalink Normal View History

2017-08-07 11:08:39 +00:00
(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)