-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
17 lines (17 loc) · 974 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{:deps true
:builds {:spread-x {:target :browser
:output-dir "resources/js/spreadx"
:asset-path "/js/spreadx"
:modules {:main {:init-fn spread-x/run}}}
:workspaces {:target :browser
:output-dir "resources/public/js/workspaces"
:asset-path "/js/workspaces"
:devtools {:http-root "resources/public"
:http-port 3333
:http-resource-root "."
:preloads [devtools.preload]}
:modules {:main {:entries [workspaces]}}}
:ci {:target :karma
:compiler-options {:output-feature-set :es6}
:ns-regexp "-test$"
:output-to "target/ci.js"}}}