-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
24 lines (21 loc) · 779 Bytes
/
deps.edn
File metadata and controls
24 lines (21 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{:paths
[:src-paths :resources-paths :output-paths]
:deps {org.clojure/clojurescript {:mvn/version "1.10.879"}
com.bhauman/figwheel-main {:mvn/version "0.2.15"}
reagent/reagent {:mvn/version "1.1.0"}}
:aliases
{:src-paths ["src"]
:resources-paths ["resources"]
:output-paths ["target"]
:dev
{:main-opts ["--main" "figwheel.main"
"--build" "dev"
"--repl"]}}
;; primitive
;; connect to socket repl without any dependencies
;; lets you evaluate code from repl which is sent to the browser
:socket
{:jvm-opts ["-Dclojure.server.browser={:port 4444,:accept cljs.server.browser/repl}"]
:main-opts ["--main" "figwheel.main"
"--watch" "src"
"--compile" "example-app.core"]}}