-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshadow-cljs.edn
24 lines (23 loc) · 893 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
{:deps true
:nrepl {:port 9000
:init-ns bpg.nrepl}
:builds {:sandbox
{:target :browser
:output-dir "public/.compiled-sandbox"
:asset-path "/.compiled-sandbox"
:devtools {:hud false
:log-style ""
:repl-init-ns bpg.sandbox
:repl-pprint true}
:modules {:sandbox
{:init-fn bpg.sandbox/init}}}
:tests
{:target :browser
:output-dir "public/.compiled-tests"
:asset-path "/.compiled-tests"
:devtools {:hud false
:log-style ""
:repl-init-ns bpg.sandbox
:repl-pprint true}
:modules {:tests
{:init-fn bcljs.tests.runner/-main}}}}}