-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
52 lines (47 loc) · 1.27 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
{:nrepl {:port 8777}
:jvm-opts ["-Xmx1G"]
:source-paths ["src" "test"]
:dependencies
[[reagent "1.1.0"]
[re-frame "1.2.0"]
[day8.re-frame/http-fx "0.2.4"]
[day8.re-frame/tracing "0.6.2"]
[camel-snake-kebab "0.4.2"]
[re-com "2.13.2"]
[bidi "2.1.6"]
[org.clojure/test.check "1.1.1"]
[clj-commons/pushy "0.3.10"]
[garden "1.3.10"]
[net.dhleong/spade "1.1.0"]
[re-pressed "0.3.1"]
[cljs-ajax "0.8.4"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[binaryage/devtools "1.0.4"]
[day8.re-frame/re-frame-10x "1.2.2"]
[cider/cider-nrepl "0.28.1"]]
: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 dativerf.core/init}}
:devtools
{:preloads [day8.re-frame-10x.preload]}
:dev
{:compiler-options
{:closure-defines
{ re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true
re-com.config/root-url-for-compiler-output "http://localhost:8290/js/compiled/app/cljs-runtime/"}}}
:release
{:build-options
{:ns-aliases
{day8.re-frame.tracing day8.re-frame.tracing-stubs}}}}
:test
{:target :node-test
:output-to "out/node-tests.js"
:autorun false}}}