forked from VisionsGlobalEmpowerment/webchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
59 lines (58 loc) · 1.65 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;; shadow-cljs configuration
{:source-paths
["src/cljs"
"src/cljc"
"src/sw"
"src/libs"
"test/cljs"
"test/cljc"]
:dependencies
[[reagent "0.7.0"]
[re-frame "0.10.5"]
[yogthos/config "0.8"]
[org.clojars.melodylane/cljs-react-material-ui "1.4.0-0.1" :exclusions [cljsjs/material-ui]]
[reanimated "0.6.1"]
[cljs-http "0.1.45"]
[tupelo "0.9.185"]
[day8.re-frame/test "0.1.5"]
[day8.re-frame/http-fx "0.1.6"]
[cljs-ajax "0.8.0"]
[cheshire "5.10.0"]
[camel-snake-kebab "0.4.1"]
[bidi "2.1.5"]
[kibu/pushy "0.3.8"]
[cljsjs/enzyme "3.8.0"]
[cljs-idxdb "0.1.0"]
[phrase "0.3-alpha4"]
[funcool/promesa "5.0.0"]
[com.taoensso/tempura "1.2.1"]
[day8.re-frame/re-frame-10x "0.3.3"]
[day8.re-frame/tracing "0.5.5"]]
:dev-http {8021 "target/test"}
:jvm-opts ["-Xmx1G"]
:builds
{:app
{:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules {:app {:entries [webchange.core]}}
:devtools {:after-load webchange.core/mount-root
:ignore-warnings true
:hud #{:errors :progress}}
:compiler-options {:optimizations :simple}
:release {:build-options
{:ns-aliases {day8.re-frame.tracing day8.re-frame.tracing-stubs}}}}
:service-worker
{:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules {:service-worker {:entries [webchange.service-worker]
:web-worker true}}}
:test
{:target :browser-test
:test-dir "target/test"
:ns-regexp "-test$"}
:ci
{:target :karma
:output-to "target/ci.js"
:ns-regexp "-test$"}}}