-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
45 lines (44 loc) · 2.94 KB
/
shadow-cljs.edn
File metadata and controls
45 lines (44 loc) · 2.94 KB
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
{:deps true
:builds {:calva-lib
{:target :node-library
:exports {:formatText calva.fmt.formatter/format-text-bridge
:formatTextAtRange calva.fmt.formatter/format-text-at-range-bridge
:formatTextAtIdx calva.fmt.formatter/format-text-at-idx-bridge
:formatTextAtIdxOnType calva.fmt.formatter/format-text-at-idx-on-type-bridge
:cljfmtOptionsFromString calva.fmt.formatter/cljfmt-from-string-js-bridge
:defaultIndents calva.fmt.formatter/get-default-indents-js-bridge
:inferIndents calva.fmt.inferer/infer-indents-bridge
:inferParens calva.fmt.inferer/infer-parens-bridge
:jsify calva.js-utils/jsify
:cljify calva.js-utils/cljify
:prettyPrint calva.pprint.printer/pretty-print-js-bridge
:parseEdn calva.parse/parse-edn-js-bridge
:parseEdnWithInst calva.parse/parse-edn-with-inst-js-bridge
:parseForms calva.parse/parse-forms-js-bridge
:setStateValue calva.state/set-state-value!
:getStateValue calva.state/get-state-value
:getState calva.state/get-state
:removeStateValue calva.state/remove-state-value!
:js2cljs calva.js2cljs.converter/convert-bridge
:dart2clj calva.dartclojure/convert-bridge
:readConfigEdn calva.read-config/config-edn->js-bridge
:html2hiccup calva.html2hiccup/html->hiccup-convert-bridge
:interpolateVariables calva.interpolate/interpolate-variables
:initializeCljs calva.util/initialize-cljs
:showReplOutputWebviewPanel calva.repl.webview.core/show-repl-output-webview-panel
:appendToReplOutputWebview calva.repl.webview.core/append
:appendStackTraceToReplOutputWebview calva.repl.webview.core/append-stacktrace
:clearReplOutputView calva.repl.webview.core/clear-output-view}
:output-to "out/cljs-lib/cljs-lib.js"}
:test
{:target :node-test
:output-to "out/cljs-lib/test/cljs-lib-tests.js"
:ns-regexp "-test$"
:autorun true}
:repl-output-ui
{:target :browser
:asset-path "js"
:output-dir "repl-output-ui/js"
:modules {:main {:init-fn calva.repl.webview.ui/main}}
:devtools {:loader-mode :eval
:devtools-url "http://localhost:9630"}}}}