-
Notifications
You must be signed in to change notification settings - Fork 15
/
shadow-cljs.edn
28 lines (22 loc) · 939 Bytes
/
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
{
:deps {:aliases [:shadow-cljs] ; <= use this alias in deps.edn
}
; :source-paths ["src" "test"]
; :dependencies []
:dev-http {8080 "public"
8021 "out/test"}
:builds {:frontend {:target :browser
:modules {:main {:init-fn acme.frontend.app/init}}}
:test-node {:target :node-test
:output-to "out/node-tests.js"
:ns-regexp "^tst\\."
:autorun true}
:test-karma {:target :karma
:output-to "out/karma-tests.js"
:ns-regexp "^tst\\."
:autorun true}
:test {:target :browser-test
:test-dir "out/test"
:ns-regexp "^tst\\."}
}
}