-
Notifications
You must be signed in to change notification settings - Fork 8
/
deps.edn
32 lines (29 loc) · 1.93 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
com.fulcrologic/fulcro {:mvn/version "3.5.2"}
com.wsscode/pathom {:mvn/version "2.3.1"}}
:aliases
{:dev {:extra-deps {thheller/shadow-cljs {:mvn/version "2.15.5"}
binaryage/devtools {:mvn/version "1.0.0"}
;; for Workspaces:
com.github.awkay/workspaces {:mvn/version "1.0.2"}
;; Emacs requirements for M-x cider-connect-cljs:
cider/cider-nrepl {:mvn/version "0.26.0"}
;; FIXME: Do we really need piggieback for Emacs?!
cider/piggieback {:mvn/version "0.5.1"}}}
;; NOTE: Running shadow via clojure -M:... does not work well with Calva's Jack-in, since it wants to do
;; its own main opts
;; :serve {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
;; :main-opts ["-m" "shadow.cljs.devtools.cli" "watch" "main"]
;; :extra-deps {thheller/shadow-cljs {:mvn/version "2.14.5"}
;; binaryage/devtools {:mvn/version "1.0.0"}}}
;; ;; Activate if you want to `M-x cider-connect-cljs` from Emacs:
;; :cider {:extra-deps {cider/cider-nrepl {:mvn/version "0.25.9"} ; must be added for M-x cider-connect-cljs
;; cider/piggieback {:mvn/version "0.5.1"}}}
;; :serve-puzzles {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
;; :main-opts ["-m" "shadow.cljs.devtools.cli" "watch" "workspaces"]
;; :extra-deps {thheller/shadow-cljs {:mvn/version "2.14.5"}
;; binaryage/devtools {:mvn/version "1.0.0"}
;; ;; for Workspaces:
;; com.github.awkay/workspaces {:mvn/version "1.0.2"}}}}
}}