Skip to content

Commit 1eeb422

Browse files
aliases: update :search/libraries to use practicalli/clj-find-libraries fork
1 parent 7a8b944 commit 1eeb422

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.org

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#+TITLE: Changelog
22

33
* Unreleased
4+
** Changed
5+
- `:search/libraries` updated to use practicalli/clj-find-libraries fork
46

57
* 2023-11-03
68
** Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ How to run common tasks for Clojure development.
155155
| Run REPL (rebel readline with nrepl server) | `clojure -M:repl/rebel` | Practicalli |
156156
| Run ClojureScript REPL with nREPL (editor support) | `clojure -M:repl/cljs` | Practicalli |
157157
| 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 |
159159
| Find available versions of a library | `clojure -X:deps find-versions :lib domain/library-name` | Built-in |
160160
| Resolve git coord tags to shas and update deps.edn | `clojure -X:deps git-resolve-tags git-coord-tag` | Built-in |
161161
| Generate image of project dependency graph | `clojure -T:project/graph-deps` | Practicalli |

deps.edn

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,24 @@
274274
;; clojure -M:search/libraries http-kit # fuzzy search for dependency
275275
;; clojure -M:search/libraries http-kit ring compojure # multiple deps
276276
;; 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+
277284
:search/libraries
278285
{: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/"}}
282295
:main-opts ["--main" "find-deps.core"]}
283296

284297
;; Dependency version management

0 commit comments

Comments
 (0)