forked from BetterThanTomorrow/calva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
24 lines (21 loc) · 1.16 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
{:dependencies [[pez/cljfmt "0.0.4-SNAPSHOT"]]
:source-paths ["calva/cljs-lib/src"
"calva/cljs-lib/test"]
:builds {:calva-lib
{:target :node-library
:exports {:formatText calva.fmt.formatter/format-text
:formatTextAtRange calva.fmt.formatter/format-text-at-range
:formatTextAtIdx calva.fmt.formatter/format-text-at-idx
:formatTextAtIdxOnType calva.fmt.formatter/format-text-at-idx-on-type
:inferIndents calva.fmt.inferer/infer-indents
:inferParens calva.fmt.inferer/infer-parens
:jsify calva.js-utils/jsify
:cljify calva.js-utils/cljify
:parseEdn calva.js-utils/parse-edn-js
:parseForms calva.js-utils/parse-forms-js}
:output-to "cljs-out/cljs-lib.js"}
:test
{:target :node-test
:output-to "cljs-out/test/cljs-lib-tests.js"
:ns-regexp "-test$"
:autorun true}}}