mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
26 lines
804 B
Clojure
26 lines
804 B
Clojure
{:lein {:profile "+shadow"}
|
|
:dev-http {8021 "target/shadow-browser-test"}
|
|
|
|
:builds
|
|
{:node-test
|
|
{:target :node-test
|
|
:output-to "target/shadow-node-test/node-tests.js"
|
|
:ns-regexp "-test"
|
|
;; Watch will also run the tests
|
|
:autorun true
|
|
:compiler-options {:warnings {:redef-in-file false
|
|
:fn-deprecated false}}}
|
|
|
|
;; For local dev - http://localhost:8021
|
|
:browser-test
|
|
{:target :browser-test
|
|
:test-dir "target/shadow-browser-test"
|
|
:compiler-options {:warnings {:redef-in-file false
|
|
:fn-deprecated false}}}
|
|
|
|
:karma
|
|
{:target :karma
|
|
:output-to "target/karma/ci.js"
|
|
:ns-regexp "-test$"
|
|
:compiler-options {:warnings {:redef-in-file false
|
|
:fn-deprecated false}}}}}
|