-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshadow-cljs.edn
21 lines (19 loc) · 951 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
{:dependencies [[re-view "0.4.6"]
[appliedscience/js-interop "0.2.4"]
;[thi.ng/geom "0.0.908"]
]
:source-paths ["src"]
:nrepl {:port 8703}
:builds {:bootstrap {:target :bootstrap
:output-dir "js/bootstrap"
:entries [faber.user]
:exclude #{cljs.js}
}
:browser {:target :browser
:output-dir "js"
:asset-path "js"
:compiler-options {:optimizations :simple}
:modules {:base {:entries [faber.core]}}
:devtools {:http-root "."
:http-port 8702
:after-load faber.core/render}}}}