-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
32 lines (32 loc) · 964 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
{:builds
{:app {:asset-path "/js"
:modules {:main {:init-fn app.core/main}}
:output-dir "public/js"
:target :browser
:compiler-options
{
:pseudo-names true
:pretty-print true
;:source-map true
;:optimizations :none
;:fn-invoke-direct true
}
}
:cards {:asset-path "/js"
:modules {:main {:init-fn app.cards/main}}
:compiler-options {:devcards true}
:output-dir "public/js"
:target :browser}
:test {:ns-regexp "app.cards"
:output-to "out/test.js"
:target :node-test}
:e2e {:ns-regexp "e2e.*"
:output-to "out/e2e.js"
:target :node-test}}
:dependencies [[reagent "0.8.1"]
[alandipert/storage-atom "2.0.1"]
[com.cognitect/transit-cljs "0.8.256"]
[devcards "0.2.6"]]
:dev-http {3000 "public"}
:nrepl {:port 3333}
:source-paths ["src"]}