This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-26
Channels
- # announcements (1)
- # atom-editor (7)
- # babashka (9)
- # beginners (46)
- # cider (1)
- # circleci (2)
- # clj-on-windows (1)
- # cljdoc (5)
- # cljsrn (2)
- # clojure (25)
- # clojure-austin (8)
- # clojure-brasil (4)
- # clojure-europe (52)
- # clojure-nl (1)
- # clojure-norway (162)
- # clojure-uk (2)
- # cursive (3)
- # datalevin (134)
- # datomic (16)
- # defnpodcast (8)
- # graphql (9)
- # honeysql (5)
- # hoplon (26)
- # hyperfiddle (18)
- # introduce-yourself (1)
- # lsp (4)
- # malli (19)
- # nbb (16)
- # nrepl (1)
- # practicalli (3)
- # releases (3)
- # shadow-cljs (36)
- # tools-deps (7)
- # vim (2)
- # xtdb (9)
Hi, did clojure.tools.deps.alpha.libmap get purged from your git history? I was using it for a long time, but I can no longer find it anywhere. We found what looks like the same namespace here: https://github.com/just-sultanov/clj-deps
that was part of the add-lib branch (not master) of tools.deps.alpha, since then the add-lib branch was superseded by add-lib2 and then add-lib3 branches (add-lib3 is the only one of those that is still around, and it doesn't have libmap) and tools.deps.alpha came out of alpha and goes by tools.deps now
and recent alpha's of clojure 1.12 now have add-lib, so the add-lib3 branch is likely not long for this world
Thank you. Where is the right place to get the lib-map namespace nowadays?
That particular namespace doesn't seem to exist anymore. Which functionality do you need? Perhaps you can still find it under a different name or slightly different API.
The lib map files have not been created or injected for a while, but the effective replacement for this is new clojure.java.basis api that was added in 1.12.0-alpha2 - the lib map is the :libs key of the basis
I see! Thank you.