-
Notifications
You must be signed in to change notification settings - Fork 1
/
shadow-cljs.edn
21 lines (20 loc) · 1.19 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
{:deps {:aliases [:dev :test]}
:builds {:lib {:target :node-library
:output-to "dist/fonda.js"
:exports {:execute fonda.core/execute}
:release {:compiler-options {:optimizations :simple
:variable-renaming :off
:property-renaming :off
:pretty-print true
:source-map true}}}
:test {:target :node-test
:output-to "dist/test.js"
:autorun true
:devtools {:preloads [fonda.test-preload]}
:release {:compiler-options {:optimizations :simple
:variable-renaming :off
:property-renaming :off
:pretty-print true
:source-map true
:elide-asserts false}
:autorun false}}}}