-
Notifications
You must be signed in to change notification settings - Fork 5
/
shadow-cljs.edn
27 lines (26 loc) · 1.59 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
{:deps {:aliases [:dev :tests]}
:dev-http {8000 "resources/public"}
:builds {:tests {:target :browser-test
:build-hooks [(nota.hooks.build/hook)]
:test-dir "resources/public/js/test"
:ns-regexp "-test$"
:devtools {:http-port 8022
:http-root "resources/public/js/test"}}
:ci-tests {:target :karma
:build-hooks [(nota.hooks.build/hook)]
:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true}}}
:output-to "target/ci.js"
:ns-regexp "-test$"}
:main {:target :browser
:build-hooks [(nota.hooks.build/hook)
(nota.hooks.index/hook)]
:release {:module-hash-names true
:build-hooks [(nota.hooks.build/hook)
(nota.hooks.index/hook)]}
:output-dir "resources/public/js/nota"
:asset-path "/js/nota"
:modules {:main {:init-fn nota.application/init
:entries [nota.application]}}
:devtools {:after-load nota.application/refresh
:preloads [com.fulcrologic.fulcro.inspect.preload]}}}}