-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
25 lines (25 loc) · 1.31 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
{:source-paths ["src/cljc" "src/cljs" "test/cljc" "test/cljs"]
:dependencies [[mount "0.1.16"]
[com.taoensso/sente "1.16.2"]
[reagent "1.1.1"]
[re-frame "1.2.0"]
[arttuka/reagent-material-ui "5.6.2-0"]
[com.cognitect/transit-cljs "0.8.269"]
[com.cognitect/transit-js "0.8.874"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[binaryage/devtools "1.0.6"]
[re-frisk "1.5.2"]
[day8.re-frame/test "0.1.5"]]
:builds {:app {:target :browser
:output-dir "target/public/js"
:asset-path "/js"
:modules {:main {:entries [luma.core]}}
:devtools {:preloads [re-frisk.preload]}
:compiler-options {:optimizations :advanced
:source-map true}
:infer-externs :auto
:js-options {:anon-fn-naming-policy :unmapped
:entry-keys ["module" "browser" "main"]}
:module-hash-names 8}
:test {:target :karma
:output-to "target/test.js"}}}