forked from nubank/workspaces
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathshadow-cljs.edn
More file actions
17 lines (16 loc) · 947 Bytes
/
shadow-cljs.edn
File metadata and controls
17 lines (16 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; shadow-cljs configuration
{:deps {:aliases [:provided :dev]}
:nrepl {:port 9845}
:builds {:workspaces {:target :browser
:output-dir "public/workspaces/js"
:asset-path "/js"
:compiler-options {:closure-output-charset "US-ASCII"}
:devtools {:preloads [com.fulcrologic.devtools.chrome-preload]
:loader-mode :eval
:http-root "public/workspaces"
:http-port 3689
:http-resource-root "."}
:modules {:main {:entries [nubank.workspaces.workspaces.main]}}}
:ci {:target :karma
:ns-regexp "-ws$"
:output-to "target/ci.js"}}}