-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
20 lines (20 loc) · 1008 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{:dependencies [[reagent "0.10.0"]]
:nrepl {:port 7888}
:source-paths ["src" "test"]
:builds {:browser {:target :browser
:asset-path "/js"
:devtools {:http-port 7000
:http-root "public"
:http-handler shadow.http.push-state/handle
:after-load viiguis.main/render}
:dev {:modules {:base {:entries [viiguis.main]}}
:compiler-options {:optimizations :none}}
:release {:modules {:base {:entries [viiguis.main]}}
:output-dir "release/js"
:compiler-options {:optimizations :advanced}}}
:test {:target :browser-test
:test-dir "target"
:devtools {:http-port 7010
:http-root "target"}}
:karma-test {:target :karma
:output-to "target/karma-test.js"}}}