-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshadow-cljs.edn
31 lines (28 loc) · 903 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
29
30
31
{:nrepl {:port 8777}
:source-paths ["src" "test"]
:dependencies
[[binaryage/devtools "1.0.6"]
[cljs-ajax "0.8.4"]
[reagent "1.1.1"]
[re-frame "1.3.0"]
[day8.re-frame/http-fx "0.2.4"]
[day8.re-frame/tracing "0.6.2"]
[day8.re-frame/re-frame-10x "1.5.0"]]
:dev-http
{8280 "resources/public"
8290 "target/browser-test"}
:builds
{:app
{:target :browser
:output-dir "resources/public/_js/compiled"
:asset-path "/_js/compiled"
:modules {:app {:init-fn kees.arena-graph.main/init}}
:devtools {:preloads [day8.re-frame-10x.preload
shadow.remote.runtime.cljs.browser]}
:dev {:compiler-options
{:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}
:release {:build-options
{:ns-aliases
{day8.re-frame.tracing day8.re-frame.tracing-stubs}}}}}}