-
Notifications
You must be signed in to change notification settings - Fork 27
/
deps.edn
46 lines (37 loc) · 1.36 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
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.3"}}
:aliases
{:test
;; clj -X:test
{:extra-paths ["test"]
:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
org.clojure/core.async {:mvn/version "1.6.681"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
io.github.tonsky/clj-reload {:mvn/version "0.7.1"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:jvm-opts ["-Dclj-commons.ansi.enabled=true"]
:exec-fn cognitect.test-runner.api/test}
;; clj -T:build <command>
:build
{:deps {io.github.hlship/build-tools
{:git/tag "0.10.2" :git/sha "3c446e4"}}
:ns-default build}
:1.10
{:override-deps {org.clojure/clojure {:mvn/version "1.11.2"}}}
;; clj -M:test:demo
:demo
{:main-opts ["-m" "demo"]}
:disable-colors
{:jvm-opts ["-Dclj-commons.ansi.enabled=false"]}
:nrepl
{:extra-deps {nrepl/nrepl {:mvn/version "1.1.1"}}
:main-opts ["-m" "nrepl.cmdline" ]}
:repl
{:main-opts ["-m" "clj-commons.pretty.repl"]}}
:net.lewisship.build/scm
{:url "https://github.com/clj-commons/pretty"
:license :asl}
:codox/config
{:description "Clojure library to help print things, prettily"
:source-uri "https://github.com/clj-commons/pretty/blob/master/{filepath}#L{line}"}}