forked from ferdinand-beyer/refx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshadow-cljs.edn
29 lines (24 loc) · 863 Bytes
/
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
{:deps {:aliases [:dev :test :helix :uix]}
:dev-http {8000 "target/test/browser"
8001 "examples/uix/resources/public"
8002 "examples/helix/resources/public"}
:builds
{:browser-test
{:target :browser-test
:test-dir "target/test/browser"
:compiler-options {:pretty-print true
:external-config {:devtools/config {:features-to-install [:formatters :hints]}}}}
:karma-test
{:target :karma
:output-to "target/test/karma/test.js"
:compiler-options {:pretty-print true}}
:example-uix
{:target :browser
:output-dir "examples/uix/resources/public/js"
:asset-path "/js"
:modules {:core {:init-fn todomvc.uix.core/init}}}
:example-helix
{:target :browser
:output-dir "examples/helix/resources/public/js"
:asset-path "/js"
:modules {:core {:init-fn todomvc.helix.core/init}}}}}