-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
30 lines (25 loc) · 1.03 KB
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{:dependencies [[binaryage/devtools "1.0.2"]]
:source-paths ["src" "test"]
:builds {:browser-test-bootstrap
{:target :bootstrap
:output-dir "target/browser-test/bootstrap"
:exclude #{cljs.js}
:entries [cljs.js bootstrap-require-macros.entry]
:macros []}
:browser-test
{:target :browser-test
:test-dir "target/browser-test"
:devtools {:http-port 8021
:http-root "target/browser-test"}
:compiler-options {:pretty-print true}}
:karma-test-bootstrap
{:target :bootstrap
:output-dir "target/karma/bootstrap"
:exclude #{cljs.js}
:entries [cljs.js bootstrap-require-macros.entry]
:macros []}
:karma-test
{:target :karma
:ns-regexp ".*-test$"
:output-to "target/karma/test.js"
:compiler-options {:pretty-print true}}}}