File tree Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 3
3
:deps {org.clojure/data.zip {:mvn/version " 1.0.0" }
4
4
io.aviso/pretty {:mvn/version " 1.1" }
5
5
dev.nubank/docopt {:mvn/version " 0.6.1-fix7" }
6
- com.github.liquidz/antq {:mvn/version " 0.16.1 " }
6
+ com.github.liquidz/antq {:mvn/version " 0.16.3 " }
7
7
doric/doric {:mvn/version " 0.9.0" }
8
- version-clj/version-clj {:mvn/version " 2.0.1 " }
8
+ version-clj/version-clj {:mvn/version " 2.0.2 " }
9
9
lread/status-line {:git/url " https://github.com/lread/status-line.git"
10
10
:sha " 35ed39645038e81b42cb15ed6753b8462e60a06d" }}
11
11
:tasks {; ; setup
Original file line number Diff line number Diff line change 21
21
; ; linting
22
22
:lint-cache {:replace-paths [" src" ]} ; ; when building classpath we want to exclude resources
23
23
; ; so we do not pick up our own clj-kondo config exports
24
- :clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version " 2021.07.28 " }}
24
+ :clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version " 2021.08.06 " }}
25
25
:main-opts [" -m" " clj-kondo.main" ]}
26
26
27
27
:eastwood {:extra-deps {jonase/eastwood {:mvn/version " 0.9.6" }}
53
53
:main-opts [" -m" " kaocha.runner" ]}
54
54
55
55
; ; figwheel for clojurescript testing during dev
56
- :fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version " 0.2.14-SNAPSHOT " }}
56
+ :fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version " 0.2.14" }}
57
57
:extra-paths [" target" " test" ]
58
58
:main-opts [" -m" " figwheel.main" " -b" " fig" " -r" ]}
59
59
72
72
cli-matic/cli-matic {:mvn/version " 0.4.3" }}}
73
73
74
74
:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version " 1.10.3" }}
75
- :extra-deps {metosin/malli {:mvn/version " 0.5 .1" }
75
+ :extra-deps {metosin/malli {:mvn/version " 0.6 .1" }
76
76
io.aviso/pretty {:mvn/version " 1.1" }}
77
77
:ns-default lread.apply-import-vars}
78
78
126
126
; ;
127
127
; ; Maintenance support
128
128
; ;
129
- :outdated {:extra-deps {com.github.liquidz/antq {:mvn/version " 0.16.1 " }
129
+ :outdated {:extra-deps {com.github.liquidz/antq {:mvn/version " 0.16.3 " }
130
130
org.slf4j/slf4j-simple {:mvn/version " 1.7.32" } ; ; to rid ourselves of logger warnings
131
131
}
132
132
:main-opts [" -m" " antq.core"
Original file line number Diff line number Diff line change 6
6
"karma-cljs-test" : " ^0.1.0" ,
7
7
"karma-junit-reporter" : " ^2.0.0" ,
8
8
"karma-spec-reporter" : " ^0.0.32" ,
9
- "shadow-cljs" : " ^2.15.2 "
9
+ "shadow-cljs" : " ^2.15.5 "
10
10
}
11
11
}
Original file line number Diff line number Diff line change 15
15
[lread.status-line :as status]
16
16
[release.version :as version]))
17
17
18
- (defn shcmd [cmd & args]
18
+ (defn shcmd [cmd & args]
19
19
(let [[opts cmd args] (if (map? cmd)
20
20
[cmd (first args) (rest args)]
21
21
[{} cmd args])]
101
101
(defn- deps-tree [{:keys [home-dir]} cmd]
102
102
(let [{:keys [out err]} (shcmd {:dir home-dir
103
103
:out :string
104
- :err :string }
104
+ :err :string }
105
105
cmd)]
106
106
(-> (format " stderr->:\n %s\n stdout->:\n %s" err out)
107
107
print-deps)))
303
303
; ;
304
304
305
305
(def libs [{:name " antq"
306
- :version " 0.16.1 "
306
+ :version " 0.16.3 "
307
307
:platforms [:clj ]
308
308
:github-release {:repo " liquidz/antq" }
309
309
:patch-fn deps-edn-v1-patch
323
323
:root " cljfmt"
324
324
:github-release {:repo " weavejester/cljfmt"
325
325
:via :tag }
326
- :patch-fn project-clj-v1-patch
326
+ :patch-fn project-clj-v1-patch
327
327
:show-deps-fn lein-deps-tree
328
328
:test-cmds [" lein test" ]}
329
329
{:name " cljstyle"
330
330
:version " 0.15.0"
331
331
:platforms [:clj ]
332
332
:github-release {:repo " greglook/cljstyle"
333
333
:via :tag }
334
- :patch-fn project-clj-v1-patch
334
+ :patch-fn project-clj-v1-patch
335
335
:show-deps-fn lein-deps-tree
336
336
:test-cmds [" lein check"
337
337
" lein test" ]}
338
338
{:name " clojure-lsp"
339
339
:platforms [:clj ]
340
- :version " 2021.07.28-14.24.06 "
340
+ :version " 2021.08.16-19.02.30 "
341
341
:github-release {:repo " clojure-lsp/clojure-lsp" }
342
342
:patch-fn clojure-lsp-patch
343
343
:show-deps-fn cli-deps-tree
You can’t perform that action at this time.
0 commit comments