-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
49 lines (41 loc) · 2.06 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
44
45
46
47
48
49
{:paths ["src" "dev" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.2"}
;; Make beautiful animations with p5.js
quil/quil {:mvn/version "4.3.1563"}
;; Geometry kit
thi.ng/geom {:mvn/version "1.0.1"}
;; silence log warnings
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}
org.babashka/cli {:mvn/version "0.8.59"}
;; This version needs to match the shadow-cljs version declared in `package.json`.
thheller/shadow-cljs {:mvn/version "2.28.8"}
;; the clojurescript version must match (or exceed?) the version declared by shadow-cljs:
;; https://github.com/thheller/shadow-cljs/blob/master/project.clj#L40
org.clojure/clojurescript {:mvn/version "1.11.132"}
io.github.nextjournal/clerk {:git/sha "ee0248bbc1054476e781e25b11414fa9899050b9"}
io.github.nextjournal/clerk.render {:git/url "https://github.com/nextjournal/clerk"
;; make sure this sha matches the one in `:deps` above.
:git/sha "ee0248bbc1054476e781e25b11414fa9899050b9"
:deps/root "render"}}
:aliases
{:dev
{:jvm-opts ["-Dpolyglot.engine.WarnInterpreterOnly=false" "-XX:-OmitStackTraceInFastThrow"]
:extra-deps
{nrepl/nrepl {:mvn/version "1.1.1"}
cider/cider-nrepl {:mvn/version "0.48.0"}
djblue/portal {:mvn/version "0.55.1"}
refactor-nrepl/refactor-nrepl {:mvn/version "3.10.0"}}}
:repl
{:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[refactor-nrepl.middleware/wrap-refactor,cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}
;; This alias is used by https://clerk.garden/.
:nextjournal/clerk
{:exec-fn user/static-build!
:exec-args
{:paths ["notebooks/**"]
:index "notebooks/index.clj"
:out-path "public"
:cas-prefix "/nature-of-code/"}}
:watch
{:exec-fn user/start-with-shadow!
:exec-args {:watch-paths ["src"]}}}}