File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
#+TITLE: Changelog
2
2
3
3
* Unreleased
4
+ ** Changed
5
+ - `:search/libraries` updated to use practicalli/clj-find-libraries fork
4
6
5
7
* 2023-11-03
6
8
** Changed
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ How to run common tasks for Clojure development.
155
155
| Run REPL (rebel readline with nrepl server) | ` clojure -M:repl/rebel ` | Practicalli |
156
156
| Run ClojureScript REPL with nREPL (editor support) | ` clojure -M:repl/cljs ` | Practicalli |
157
157
| Download dependencies | ` clojure -P ` (followed by optional aliases) | Built-in |
158
- | Find libraries (Clojars & Maven Central) | ` clojure -M:search/libraries qualified-lib rary -name(s) ` | Practicalli |
158
+ | Find libraries (Clojars & Maven Central) | ` clojure -M:search/libraries qualified-library -name(s) ` | Practicalli |
159
159
| Find available versions of a library | ` clojure -X:deps find-versions :lib domain/library-name ` | Built-in |
160
160
| Resolve git coord tags to shas and update deps.edn | ` clojure -X:deps git-resolve-tags git-coord-tag ` | Built-in |
161
161
| Generate image of project dependency graph | ` clojure -T:project/graph-deps ` | Practicalli |
Original file line number Diff line number Diff line change 274
274
; ; clojure -M:search/libraries http-kit # fuzzy search for dependency
275
275
; ; clojure -M:search/libraries http-kit ring compojure # multiple deps
276
276
; ; clojure -M:search/libraries --format:save http-kit # save into deps.edn file
277
+ ; ; :search/libraries
278
+ ; ; {:extra-deps
279
+ ; ; {find-deps/find-deps
280
+ ; ; {:git/url "https://github.com/hagmonk/find-deps"
281
+ ; ; :sha "9bf23a52cb0a8190c9c2c7ad1d796da802f8ce7a"}}
282
+ ; ; :main-opts ["--main" "find-deps.core"]}
283
+
277
284
:search/libraries
278
285
{:extra-deps
279
- {find-deps/find-deps
280
- {:git/url " https://github.com/hagmonk/find-deps"
281
- :sha " 9bf23a52cb0a8190c9c2c7ad1d796da802f8ce7a" }}
286
+ {practicalli/clj-find-libraries
287
+ {:git/url " https://github.com/practicalli-johnny/clj-find-library"
288
+ :sha " a814519ed9921fcad4515e0e4446dc34af783d28" }}
289
+ :main-opts [" --main" " find-deps.core" ]}
290
+
291
+ :search/libraries-local
292
+ {:extra-deps
293
+ {practicalli/clj-find-libraries
294
+ {:local/root " /home/practicalli/projects/practicalli/clj-find-library/" }}
282
295
:main-opts [" --main" " find-deps.core" ]}
283
296
284
297
; ; Dependency version management
You can’t perform that action at this time.
0 commit comments