-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow-cljs.edn
14 lines (13 loc) · 917 Bytes
/
shadow-cljs.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{:deps true
:dev-http {8080 "public"}
:builds {:app
{:target :browser
:modules {:main {:entries [app.common.pages app.client app.utils]
:init-fn app.client/init}}
:devtools {:preloads [preload devtools.preload]}}}
:dependencies [[cider/cider-nrepl "0.47.0"] ;; mandatory (unless it's inherited from deps.edn or otherwise present in the classpath of shadow-cljs's JVM process)
[refactor-nrepl/refactor-nrepl "3.9.0"]] ;; refactor-nrepl is optional
:nrepl {:middleware [cider.nrepl/cider-middleware ;; it's advisable to explicitly add this middleware. It's automatically added by shadow-cljs (if available in the classpath), unless `:nrepl {:cider false}`
refactor-nrepl.middleware/wrap-refactor] ;; refactor-nrepl is optional
:port 50655} ;; optional - if not specified, a random free port will be used
}