-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
24 lines (23 loc) · 1.09 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
{:deps true
:nrepl {:port 3333}
:dev-http {3000 "public"}
:builds {:app
{:target :browser
:asset-path "/js"
:modules {:main {:init-fn app.core/main}}
:output-dir "public/js"}
:cards {:target :browser
:asset-path "/js"
:modules {:main {:init-fn app.cards/main}}
:compiler-options {:devcards true}
:output-dir "public/js"
:build-options {:ns-aliases {devcards-marked cljsjs.marked
devcards-syntax-highlighter cljsjs.highlight}}}
:test {:target :node-test
:ns-regexp "app.cards"
:output-to "out/test.js"
:build-options {:ns-aliases {devcards-marked cljsjs.marked
devcards-syntax-highlighter cljsjs.highlight}}}
:e2e {:target :node-test
:ns-regexp "e2e.*"
:output-to "out/e2e.js"}}}