-
Notifications
You must be signed in to change notification settings - Fork 7
/
shadow-cljs.edn
37 lines (34 loc) · 1.66 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
35
36
37
{:source-paths ["src" "test" "resources"]
:socket-repl {:port 2233}
:nrepl {:port 3322}
:dependencies [[check "0.2.0-SNAPSHOT"]
[com.cognitect/transit-cljs "0.8.264"]
[funcool/promesa "6.0.0"]
[paprika "0.1.3-SNAPSHOT"]
[borkdude/sci "0.1.1-alpha.7"]
[compliment "0.4.0-SNAPSHOT"]
; [rewrite-cljs "0.4.4"]
[reagent "0.10.0"]
[devcards "0.2.5"]
[org.rksm/suitable "0.3.2"]
[cider/orchard "0.5.8"]
[com.wsscode/pathom "2.3.1"]
[org.pinkgorilla/gorilla-renderable-ui "0.1.33"]
[etaoin "0.3.6"]
[link.szabo.mauricio/duck-repled "0.1.1-SNAPSHOT"]]
:jvm-opts ["-Xmx800M"]
:builds {:integration {:target :browser
:js-options {:js-provider :require}
:output-dir "target/integration"
:asset-path "target/integration"
:modules {:main {:entries [repl-tooling.integration.ui]}}
:compiler-options {:devcards true
:warnings {:fn-deprecated false}
:infer-externs :auto}}
:fixture {:target :node-script
:output-to "target/fixture.js"
:output-dir "target/fixture"
:main repl-tooling.integration.fixture-app/main
:compiler-options {:elide-asserts false
:warnings {:fn-deprecated false}
:optimizations :simple}}}}