-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
27 lines (27 loc) · 1.28 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
{:paths ["src/cljs" "src/js"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"} ;; "1.12.0"
org.clojure/clojurescript {:mvn/version "1.11.132"}
lilactown/helix {:mvn/version "0.2.1"}
re-frame/re-frame {:mvn/version "1.4.3"}
com.lambdaisland/garden {:mvn/version "1.5.569"}
eu.formsandlines/formform
{:local/root "../formform-project/formform"}
eu.formsandlines/formform-vis
{:local/root "../formform-project/formform-vis"}}
:aliases
{;; This builds the CSS from `shadow-css`. Usually it doesn’t have to be called
;; explicitly, since it gets re-built on file save with `:dev`.
:build-css
{:extra-paths ["dev"]
:extra-deps {com.thheller/shadow-css {:mvn/version "0.5.0"}}
:ns-default build
:exec-fn css-release}
:dev
;; To develop with CIDER, run `cider-jack-in-cljs`. The browser page has to be
;; loaded and (for whatever reason) a single form must be evaluated in the
;; REPL in order for in-file evaluation to work. To develop .cljs and .clj
;; files in the same session, run `cider-connect-sibling-clj`.
{:extra-paths ["dev"]
:extra-deps {binaryage/devtools {:mvn/version "1.0.7"}
thheller/shadow-cljs {:mvn/version "2.28.18"}
com.thheller/shadow-css {:mvn/version "0.5.0"}}}}}