-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathshadow-cljs.edn
45 lines (43 loc) · 1.4 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
38
39
40
41
42
43
44
45
;; shadow-cljs configuration
{:source-paths
["src/"
"test/"]
:dependencies
[[instaparse "1.4.12"]
[bidi "2.1.6"]
[kibu/pushy "0.3.8"]
[reagent "1.2.0"]
[re-frame "1.4.2"]
[re-pressed "0.3.2"]
[metosin/malli "0.13.0"]
[org.clj-commons/hickory "0.7.4"]
[com.github.pkpkpk/cljs-node-io "2.0.332"]
[day8.re-frame/undo "0.3.3"]
[com.github.flow-storm/flow-storm-inst "RELEASE"]
^:dev [day8.re-frame/re-frame-10x "1.9.3"]]
:nrepl {:port 9000}
:dev-http {8090 "public"}
:builds
{:engine {:target :node-library
:output-to "output.js"
:exports {:parse bean.parser.parser/parse}}
:trellis {:target :node-script
:main bean.trellis/main
:output-to "out/trellis.js"}
:ui {:target :browser
:output-dir "public/js"
:asset-path "/js"
:devtools {:preloads [day8.re-frame-10x.preload.react-18
flow-storm.preload]}
:dev {:compiler-options
{:closure-defines
{re-frame.trace.trace-enabled? true
day8.re-frame.tracing.trace-enabled? true}}}
:release {:build-options
{:ns-aliases
{day8.re-frame.tracing day8.re-frame.tracing-stubs}}}
:modules {:main {:entries [bean.ui.main]
:init-fn bean.ui.main/init}}}
:test {:target :node-test
:output-to "tests.js"
:ns-regexp "-test$"}}}