-
Notifications
You must be signed in to change notification settings - Fork 39
/
shadow-cljs.edn
43 lines (39 loc) · 2.71 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
34
35
36
37
38
39
40
41
42
{:deps {:aliases [:dev :test]}
:nrepl {:port 9000}
:jvm-opts ["-Xmx2G"]
:builds {:main {:target :browser
:output-dir "resources/public/js/main"
:asset-path "/js/main"
:dev {:compiler-options {:external-config {:guardrails {:emit-spec? true :throw? false}}}}
:modules {:main {:init-fn com.example.client/init}}
:js-options {:resolve
{
;; for performance checking during dev
;;"react-dom" {:target :npm
;;:require "react-dom/cjs/react-dom.production.min.js"}
;;"react" {:target :npm
;;:require "react/cjs/react.production.min.js"}
;; Make js-joda-timezone a more reasonable build size
"@js-joda/timezone"
{:target :npm
:require "@js-joda/timezone/dist/js-joda-timezone-10-year-range.min.js"}}}
:devtools {:preloads [com.fulcrologic.fulcro.inspect.preload]
:after-load com.example.client/refresh}}
:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-spec$"
:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true :emit-spec? true}}}
:js-options {:resolve {"react-dom" {:target :npm
:require "react-dom/cjs/react-dom.production.min.js"}
"react" {:target :npm
:require "react/cjs/react.production.min.js"}}}
:devtools {:http-port 8081
: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
:external-config {:guardrails {:throw? true :emit-spec? true}}}
:output-to "target/ci.js"
:ns-regexp "-spec$"}}}