-
Notifications
You must be signed in to change notification settings - Fork 7
/
shadow-cljs.edn
34 lines (30 loc) · 1.74 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
26
27
28
29
30
31
32
33
{:deps {:aliases [:test :dev]}
:nrepl {:port 9000}
:dev-http {9001 "resources/public"}
:builds {:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-spec$"
:compiler-options {:static-fns false} ; required for mocking to work
:devtools {:http-port 9002
:http-resource-root "public"
:http-root "resources/public/js/test"}}
:ci-tests {:target :karma
:js-options {:js-provider :shadow}
:compiler-options {:static-fns false} ; required for mocking to work
:output-to "target/ci.js"
:ns-regexp "-spec$"}
:workspaces
{:target nubank.workspaces.shadow-cljs.target
:ns-regexp "-cards$"
:output-dir "resources/public/js/workspaces"
:asset-path "/js/workspaces"
:compiler-options {:external-config {:fulcro {:html-source-annotations? true}}}
:preloads [com.fulcrologic.fulcro.inspect.preload
com.fulcrologic.fulcro.inspect.dom-picker-preload]}
#_{:target nubank.workspaces.shadow-cljs.target
:ns-regexp "-ws$"
:output-dir "resources/public/js/workspaces"
:asset-path "js/workspaces"
:devtools {:http-port 9003
:http-resource-root "public"
:http-root "resources/public"}}}}