-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshadow-cljs.edn
32 lines (29 loc) · 928 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
32
;; shadow-cljs configuration
{:source-paths
["src/cljs", "test/cljs"]
:dependencies
[[reagent "0.8.1"]
[re-frame "0.10.9"]
[re-pressed "0.3.1"]
[day8.re-frame/http-fx "v0.2.0"]
[akiroz.re-frame/storage "0.1.4"]
[funcool/bide "1.6.0"]
[fipp "0.6.22"]
;; debugging
[day8.re-frame/re-frame-10x "0.4.5"]
#_[day8.re-frame/tracing "0.5.1"]
[philoskim/debux "0.5.6"]]
:nrepl {:port 9000}
:builds
{:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:modules {:main {:entries [airsonic-ui.core]}}
:devtools {:http-root "public"
:http-port 8080
:after-load airsonic-ui.core/mount-root
:preloads [day8.re-frame-10x.preload]}
:dev {:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}}}
:test {:target :karma
:output-to "public/test/ci.js"
:ns-regexp "-test$"}}}