-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
22 lines (22 loc) · 1.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
{:paths ["src/main"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
babashka/fs {:mvn/version "0.4.19"}
hiccup/hiccup {:mvn/version "2.0.0-RC3"}
io.github.nextjournal/markdown {:mvn/version "0.6.157"}
clj-commons/clj-yaml {:mvn/version "1.0.29"}
org.babashka/sci {:mvn/version "0.9.44"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"}}
:aliases
{:generate {:exec-fn com.grahamcarlyle.blog.build/generate-blog
:exec-args {:output-dir "generated-output"}}
:test {:extra-paths ["src/test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:exec-fn cognitect.test-runner.api/test
:exec-args {:dirs ["src/test"]}}
:serve {:extra-paths ["src/dev"]
:extra-deps {org.clojure/clojure {:mvn/version "1.12.0"}
ring/ring-core {:mvn/version "1.13.0"}
ring/ring-jetty-adapter {:mvn/version "1.13.0"}}
:exec-fn serve/serve-site
:exec-args {:dir "generated-output"}}}}