-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshadow-cljs.edn
34 lines (34 loc) · 1.85 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
34
{:source-paths ["test" "src" "env/dev"]
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.11.60"]
[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 "1.3.0"]
[com.github.pkpkpk/cljs-node-io "2.0.332"]
[day8.re-frame/undo "0.3.3"]]
:builds {:app {:output-to "target/main.js"
:output-dir "target/js/compiled/prod"
:target :node-script
:devtools {:after-load babyagi.app/reload!}
:dev {:main babyagi.app/main!
:output-to "target/js/compiled/babyagi.js"
:output-dir "target/js/compiled/dev"}
:release {:main babyagi.main/main!
:compiler-options {:optimizations :simple}}}
:brw {:output-to "target/main.js"
:output-dir "target/js/compiled/prod"
:target :browser
:devtools {:after-load babyagi.app/reload!}
:dev {:main babyagi.app/main!
:output-to "target/js/compiled/babyagi.js"
:output-dir "target/js/compiled/dev"}
:release {:main babyagi.main/main!
:compiler-options {:optimizations :none}}}
:test {:output-to "target/test.js"
:output-dir "target/js/compiled/test"
:target :node-test
:ns-regexp "-test$"
:autorun true}}}