-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
38 lines (37 loc) · 2.73 KB
/
shadow-cljs.edn
File metadata and controls
38 lines (37 loc) · 2.73 KB
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
{:deps {:aliases [:demo]}
:nrepl {:port 7777}
:builds {:demo
{:target :browser
:modules {:demo {:init-fn re-demo.core/mount-demo}}
:closure-defines {;; For production builds of the demo app, set goog.DEBUG
;; to be true so that the debugging demo page works as expected.
goog.DEBUG true
re-com.config/force-include-args-desc? true
re-com.config/version :day8.dev/git-app-version}
:compiler-options {;; For production builds of the demo app, keep the component name
;; symbols for display in validation error logging.
:pseudo-names true
:externs ["externs/detect-element-resize-externs.js"]}
:build-hooks [(day8.dev/version-build-hook)]
:dev {:asset-path "/compiled_dev/"
:output-dir "run/resources/public/compiled_dev/"
:closure-defines {;; When re-com produces validation errors it tries to provide links
;; to source code. These links require that you provide the root URL
;; to the ClojureScript compiler output with source maps.
re-com.config/root-url-for-compiler-output
"http://localhost:3449/compiled_dev/cljs-runtime/"}
:compiler-options
{:external-config {:devtools/config {:features-to-install [:formatters :hints]}}}}
:release {:output-dir "run/resources/public/compiled_prod/"}
:devtools {:http-port 3449
:http-root "run/resources/public"
:push-state/index "index_dev.html"
:preloads [hashp.core]}}
:browser-test {:target :browser-test
:ns-regexp "-test$"
:test-dir "run/resources/public/compiled_test/"
:compiler-options {:externs ["externs/detect-element-resize-externs.js"]
:external-config {:devtools/config {:features-to-install [:formatters :hints]}}}
:devtools {:http-port 8021
:http-root "run/resources/public/compiled_test/"
:preloads [hashp.core]}}}}