-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
26 lines (26 loc) · 1.28 KB
/
shadow-cljs.edn
File metadata and controls
26 lines (26 loc) · 1.28 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
;
;
{:deps true
:source-paths ["src" "test"]
:dev-http {8080 "target/"}
:nrepl {:port 9001
:middleware []}
:builds {:app {:target :browser
:js-options {:js-provider :shadow}
:output-dir "resources/clojure/core/async/flow_monitor/public/assets/js/compiled"
:asset-path "/js/compiled"
:modules {:main {:init-fn clojurescript.flow-monitor-ui.core/main}}
:compiler-options {:infer-externs :auto}
:dev {:closure-defines {goog.DEBUG true}}
:release {:closure-defines {goog.DEBUG false}}
:devtools {:http-root "resources/clojure/core/async/flow_monitor/public"
:preloads []
:after-load clojurescript.flow-monitor-ui.core/on-reload
:http-port 9876}}
:test {:target :browser-test
:test-dir "resources/clojure/core/async/flow_monitor/public/assets/js/test"
:ns-regexp "-test$"
:closure-defines {flow-monitor-ui/alert-timeout-ms 10}
:devtools {:http-port 8021
:http-root "resources/clojure/core/async/flow_monitor/public/assets/js/test"}}}};
;