forked from wilkerlucio/pathom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
33 lines (31 loc) · 1.96 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 [:provided :dev]}
:nrepl {:port 59121}
:builds {:book {:target :browser
:output-dir "docs-src/supplemental_ui/js/book"
:asset-path "/assets/js/book"
:compiler-options {:closure-defines {goog.LOCALE "en"}}
:devtools {:preloads [devtools.preload fulcro.inspect.preload]
:after-load com.wsscode.pathom.book.app-types/update-apps
:http-root "docs/v2"
:http-port 8082}
:modules {:main {:entries [com.wsscode.pathom.book.main]}}}
:workspaces {:target :browser
:output-dir "workspaces/assets/js"
:asset-path "/js"
:devtools {:preloads [devtools.preload fulcro.inspect.preload]
:http-root "workspaces/assets"
:http-port 8083
:ignore-warnings true}
:modules {:main {:entries [com.wsscode.pathom.workspaces.main]}}}
:test {:target :browser-test
:test-dir "resources/public/js/test"
:ns-regexp "-test$"
:compiler-options {:static-fns false
:external-config {:guardrails {:throw? true :emit-spec? true}}}
:devtools {:http-port 9158
:http-resource-root "public"
:http-root "resources/public/js/test"}}
:ci {:target :karma
:compiler-options {:output-feature-set :es6}
:ns-regexp "-test$"
:output-to "target/ci.js"}}}