-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
32 lines (27 loc) · 1.4 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
{:source-paths ["src"]
:dependencies [[re-frame/re-frame "1.3.0"]
[day8.re-frame/tracing "0.6.2"]
[day8.re-frame/re-frame-10x "1.8.1"]
[binaryage/devtools "1.0.7"]
;; Routing
[bidi/bidi "2.1.6"]
[kibu/pushy "0.3.8"]
;; LocalStorage client-side persistence
[akiroz.re-frame/storage "0.1.4"]
[reagent/reagent "1.2.0"]
[arttuka/reagent-material-ui "5.11.12-0"]
[superstructor/re-frame-fetch-fx "0.4.0"]
[day8/shadow-git-inject "0.0.5"]]
:nrepl {:port 8777}
:build-defaults {:build-hooks [(shadow-git-inject.core/hook)]}
:dev-http {8280 "resources/public"}
:builds {:client {:target :browser
:output-dir "resources/public/js"
:modules {:client
{:init-fn software.justenough.itsallgravie.core/run}}
:devtools {:preloads [day8.re-frame-10x.preload
devtools.preload]}
:js-options {:anon-fn-naming-policy :unmapped}
:compiler-options {:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}}}