-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdeps.edn
More file actions
68 lines (53 loc) · 2.04 KB
/
deps.edn
File metadata and controls
68 lines (53 loc) · 2.04 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.12.4"}}
:aliases
{:test
;; clj -X:test
{:extra-paths ["test" "test-resources"]
:extra-deps {org.clojure/core.async {:mvn/version "1.8.741"}
nubank/matcher-combinators {:mvn/version "3.9.2"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:jvm-opts ["-Dclj-commons.ansi.enabled=true"]
:exec-args {:fn cognitect.test-runner.api/test} ; for :debug
:exec-fn cognitect.test-runner.api/test}
;; Used when generating the :pom for install & deploy
:pom
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"
:optional true}}}
;; clj -T:build <command>
:build
{:deps {io.github.hlship/build-tools
{:git/tag "0.12.1" :git/sha "05f3aeb"}}
:ns-default build}
:debug
{:exec-fn clj-commons.pretty.repl/main
:exec-args {:fn missing/bad-wolf}}
:1.11
{:override-deps {org.clojure/clojure ^:antq/exclude {:mvn/version "1.11.4"}}}
:1.10
{:override-deps {org.clojure/clojure ^:antq/exclude {:mvn/version "1.10.3"}}}
:dev
{:extra-paths ["dev"]
:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
io.github.tonsky/clj-reload {:mvn/version "1.0.0"}}}
;; clj -M:dev:demo
:demo
{:main-opts ["-m" "demo"]}
:disable-colors
{:jvm-opts ["-Dclj-commons.ansi.enabled=false"]}
;; clj -M:lint
:lint
{:deps {clj-kondo/clj-kondo {:mvn/version "2026.01.12"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src" "test"]}
:nrepl
{:extra-deps {nrepl/nrepl {:mvn/version "1.5.2"}}
: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}"}}