forked from athensresearch/athens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
33 lines (28 loc) · 1.66 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
31
32
33
{:lein true
:nrepl {:port 8777}
:builds {:app {:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules {:shared {:entries [athens.style
athens.devcards.spinner]
:preloads [devtools.preload
day8.re-frame-10x.preload]}
:app {:init-fn athens.core/init
:depends-on #{:shared}}}
:compiler-options {:source-map true
:source-map-detail-level :all
:source-map-include-sources-content true}
:dev {:compiler-options
{:closure-defines {re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}
:devtools {:http-root "resources/public"
:http-port 3000
:repl-init-ns athens.core}}
:devcards {:asset-path "js/devcards"
:modules {:main {:init-fn athens.devcards/main}}
:compiler-options {:devcards true}
:output-dir "resources/public/js/devcards"
:target :browser}
:karma-test {:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}