-
Notifications
You must be signed in to change notification settings - Fork 9
/
deps.edn
142 lines (120 loc) · 5.98 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{:paths ["src"
"resources" ; snippets + notebooks
"target/webly" ; compiled bundel (if any)
]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/core.async {:mvn/version "1.3.618"}
; cljs
thi.ng/strf {:mvn/version "0.2.2"}
com.taoensso/timbre {:mvn/version "5.1.2"} ; clj/cljs logging. awb99: this fucks up kernel-cljs-shadowdeps
com.lucasbradstreet/cljs-uuid-utils {:mvn/version "1.0.2"} ;; awb99: in encoding, and clj/cljs proof
day8.re-frame/http-fx {:mvn/version "0.2.3"}
day8.re-frame/undo {:mvn/version "0.3.3"}
re-com/re-com {:mvn/version "2.13.2"}
;pink-gorilla
org.pinkgorilla/picasso {:mvn/version "3.1.45"} ; used by nrepl-middleware + goldly cljs kernel
org.pinkgorilla/gorilla-explore {:mvn/version "0.2.64"} ; brings notebook-encoding
org.pinkgorilla/nrepl-middleware {:mvn/version "0.3.48"} ; brings picasso
org.pinkgorilla/pinkie {:mvn/version "0.3.3"}
org.pinkgorilla/goldly {:mvn/version "0.2.97"}
org.pinkgorilla/webly {:mvn/version "0.3.8"}
; core-bundel
org.pinkgorilla/ui-site {:mvn/version "0.0.6"}
org.pinkgorilla/ui-repl {:mvn/version "0.0.10"}
org.pinkgorilla/ui-code {:mvn/version "0.0.13"}
org.pinkgorilla/ui-markdown {:mvn/version "0.0.9"}}
:aliases
{;; Developer tooling
;https://github.com/applied-science/deps-library
:release
{:extra-deps {applied-science/deps-library {:mvn/version "0.4.0"}}
:main-opts ["-m" "applied-science.deps-library"]}
; https://github.com/weavejester/cljfmt
:cljfmt
{:extra-deps {cljfmt/cljfmt {:mvn/version "RELEASE"}}
:main-opts ["-m" "cljfmt.main" "check" "--indents" "cljfmt.edn"]}
:cljfmt-fix
{:extra-deps {cljfmt/cljfmt {:mvn/version "RELEASE"}}
:main-opts ["-m" "cljfmt.main" "fix" "--indents" "cljfmt.edn"]}
; https://github.com/clj-kondo/clj-kondo/blob/master/doc/jvm.md
:lint
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "RELEASE"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
:check
{:extra-deps {athos/clj-check {:git/url "https://github.com/athos/clj-check.git"
:sha "0ca84df1357d71429243b99908303f45a934654c"}}
:main-opts ["-m" "clj-check.check"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "9e35c979860c75555adaff7600070c60004a0f44"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:garamond
{:extra-deps {com.workframe/garamond {:mvn/version "0.4.0"}}
:main-opts ["-m" "garamond.main"]}
:graph-deps
{:replace-paths []
:replace-deps {org.clojure/tools.deps.graph {:mvn/version "1.0.63"}}
:main-opts ["-m" "clojure.tools.deps.graph"] ;; deprecated
:ns-default clojure.tools.deps.graph
:exec-fn graph
:exec-args {:output "target/dependencies-graph.png"
:size true}}
; https://github.com/jgrodziski/metav#spit-or-render-current-version-in-a-file
:spit {:extra-deps {metav/metav {:mvn/version "1.6.7"}}
:main-opts ["-m" "metav.spit"
"--output-dir" "resources"
"--namespace" "notebook-version"
"--formats" "edn"]}
; notebook
:ci {:extra-paths ["test"]
:exec-fn pinkgorilla.notebook-ui.app.app/notebook-run!
:exec-args {:profile "ci"
:config nil}}
:develop {:extra-paths ["profiles/webly/src"
"profiles/webly/resources"]
:exec-fn demo.app/demo!
:exec-args {:profile "watch"
:config "demo.edn"}}
; used by github-ci
:notebook-core {:exec-fn pinkgorilla.notebook-ui.app.app/notebook-run!
:exec-args {:profile "watch"
:config nil}}
:notebook ; notebook with bundeled dependencies
{:extra-paths ["target/webly"]
:extra-deps {; extra-deps get added to bundel/deps.edn for artefact notebook-bundel
org.pinkgorilla/ui-input {:mvn/version "0.0.4"}
org.pinkgorilla/ui-vega {:mvn/version "0.0.8"}
org.pinkgorilla/ui-highcharts {:mvn/version "0.0.3"}
org.pinkgorilla/gorilla-ui {:mvn/version "0.3.39"}
;org.pinkgorilla/ui-binaryclock {:mvn/version "0.0.6"}
org.pinkgorilla/ui-quil {:mvn/version "0.1.7"}}
:exec-fn pinkgorilla.notebook-ui.app.app/notebook-run!
:exec-args {:profile "watch"
; we use edn config, because deps.edn alias settings cannot be saved as resource
; and we wat to avoid duplication of the config.
:config "notebook-bundel.edn" ; in resources/notebook-bundel.edn
}}
;;
:bundel-config {:exec-fn pinkgorilla.bconfig/generate-bundle-config}
;; different ways to start the bundel - for testing
; need to be run in the bundel folder.
;:run {:extra-deps {org.pinkgorilla/gorilla-ui {:mvn/version "0.3.30"}
; org.pinkgorilla/gorilla-plot {:mvn/version "1.2.11"}
; org.pinkgorilla/ui-quil {:mvn/version "0.1.5"}}
; :main-opts ["-m" "pinkgorilla.notebook-bundel"]}
;:runxna {:extra-deps {org.pinkgorilla/gorilla-ui {:mvn/version "0.3.28"}
; org.pinkgorilla/gorilla-plot {:mvn/version "1.2.11"}
; org.pinkgorilla/ui-quil {:mvn/version "0.1.5"}}
; :exec-fn pinkgorilla.notebook-bundel/run}
;:runx {:extra-deps {org.pinkgorilla/gorilla-ui {:mvn/version "0.3.28"}
; org.pinkgorilla/gorilla-plot {:mvn/version "1.2.11"}
; org.pinkgorilla/ui-quil {:mvn/version "0.1.5"}}
; :exec-fn pinkgorilla.notebook-bundel/run
; :exec-args {:config "notebook-config.edn"}}
;
}}