forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
40 lines (37 loc) · 1.29 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}
:nrepl
{:middleware
[cider.nrepl/cider-middleware
cider.piggieback/wrap-cljs-repl
refactor-nrepl.middleware/wrap-refactor]
:port 50655}
:builds
{:app
{:target :npm-module
:output-dir "target/cljs_release/"
:dev {:output-dir "target/cljs_dev/"
:compiler-options {:reader-features #{:cljs-dev}}}
:compiler-options {:reader-features #{:cljs-release}
:source-map true}
:entries [metabase.domain-entities.queries.util
metabase.lib.column-group
metabase.lib.js
metabase.lib.limit
metabase.lib.types.isa
metabase.legacy-mbql.js
metabase.shared.dashboards.constants
metabase.shared.formatting.constants
metabase.shared.formatting.date
metabase.shared.formatting.numbers
metabase.shared.formatting.time
metabase.shared.parameters.parameters
metabase.shared.util.currency
metabase.shared.util.time
metabase.types
metabase.util.devtools]}
:test
{:target :node-test
:output-to "target/node-tests.js"
:ns-regexp "-test$"
:autorun true}}}