-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
23 lines (22 loc) · 1.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
{:paths ["dev" "src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
io.github.nextjournal/clerk {:mvn/version "0.15.957"}
clj-http/clj-http {:mvn/version "3.12.3"}
org.clj-commons/hickory {:mvn/version "0.7.3"}
org.clojure/core.match {:mvn/version "1.0.1"}
org.babashka/cli {:mvn/version "0.7.52"}
;; silence log warnings
org.slf4j/slf4j-nop {:mvn/version "2.0.7"}}
:aliases {:nextjournal/clerk {:exec-fn nextjournal.clerk/build!
:jvm-opts ["-Dclojure.main.report=stdout"]
:exec-args {:index "src/index.clj"
:compile-css true
:paths ["src/solutions/*/*.clj"]}
:main-opts ["-m" "babashka.cli.exec"]}
:serve {:exec-fn nextjournal.clerk/serve!
:exec-args {:index "src/index.clj"
:watch-paths ["src"]
:port 7878
:compile-css true
:paths ["src/solutions/*/*.clj"]}
:main-opts ["-m" "babashka.cli.exec"]}}}