-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
43 lines (34 loc) · 2.2 KB
/
deps.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
41
42
43
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
org.clojure/tools.logging {:mvn/version "0.4.0"}
com.taoensso/sente {:mvn/version "1.13.1"}
com.taoensso/timbre {:mvn/version "4.10.0"}
com.cognitect/transit-cljs {:mvn/version "0.8.256"}
re-frame {:mvn/version "0.10.6"}
re-com {:mvn/version "2.3.0"}
cljsjs/codemirror {:mvn/version "5.31.0-0"}
cljsjs/parinfer-codemirror {:mvn/version "1.4.1-2"}}
:aliases {:fig {:extra-paths ["resources" "target"]
:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.439"}
com.bhauman/figwheel-main {:mvn/version "0.1.9"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:main-opts ["-m" "figwheel.main"]}
;; Allow local override
:body {:extra-deps {reptile-body
{:git/url "https://github.com/raymcdermott/reptile-body.git"
:sha "8f103d3e53a1d31b0f5822e6be0b472f8eb0637f"}}}
;; Allow local override
:body-path {:extra-paths ["../body/dev"]}
;; Only start the client
:repl {:jvm-opts ["-Xmx1g" "-Xms1g"]
:extra-paths ["dev"]
:extra-deps {clojure-watch {:mvn/version "0.1.14"}}
:main-opts ["-m" "figwheel.main" "-b" "repl" "-r"]}
;; Start the client and the server
;; (requires :body and :body-path aliases or appropriate overrides)
:server-repl {:jvm-opts ["-Xmx1g" "-Xms1g"]
:extra-paths ["dev"]
:extra-deps {clojure-watch {:mvn/version "0.1.14"}}
:main-opts ["-i" "@reptile/start_reptile.clj"
"-m" "figwheel.main" "-b" "dev" "-r"]}
:min {:jvm-opts ["-Xmx2g" "-Xms2g"]
:main-opts ["-m" "figwheel.main" "-O" "advanced" "-bo" "min"]}}}