-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
23 lines (23 loc) · 1.1 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
{:source-paths ["src" "node_modules/sitefox/src"]
:dependencies [[reagent "1.0.0-alpha2"]
[applied-science/js-interop "0.2.7"]
[funcool/promesa "6.0.2"]]
:builds {:server {:target :node-script
:output-to "devserver.js"
:main algotracker.server/main!
:release {:output-to "build/server.js"}}
:app {:target :browser
:output-dir "public/js"
:asset-path "/js"
:compiler-options
{:optimizations :simple
:output-wrapper false}
:modules {:main {:init-fn algotracker.ui/main!}}
:devtools {:watch-dir "public"}
:release {:output-dir "build/public/js"}}
:bootstrap {:target :bootstrap
:output-dir "public/bootstrap"
:release {:output-dir "build/public/bootstrap"}
:exclude #{cljs.js}
:entries [cljs.js #_ demo.macro reagent.core promesa.core applied-science.js-interop]
:macros []}}}