-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathshadow-cljs.edn
24 lines (24 loc) · 1.25 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
{:source-paths ["test" "src" "env/dev"]
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.516"]
[org.clojure/core.async "0.4.500"]
[org.clojure/tools.cli "0.4.1"]
[mount "0.1.15"]
[reagent "0.8.1" :exclusions [[cljsjs/react]
[cljsjs/react-dom]
[cljsjs/create-react-class]]]
[re-frame "0.10.6"]]
:builds {:app {:output-to "target/main.js"
:output-dir "target/js/compiled/prod"
:target :node-script
:devtools {:after-load hugit.app/reload!}
:dev {:main hugit.main/main!
:output-to "target/js/compiled/hugit.js"
:output-dir "target/js/compiled/dev"}
:release {:main hugit.main/main!
:compiler-options {:optimizations :simple}}}
:test {:output-to "target/test.js"
:output-dir "target/js/compiled/test"
:target :node-test
:ns-regexp "-test$"
:autorun true}}}