This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-08-03
Channels
- # arachne (1)
- # beginners (75)
- # calva (7)
- # cider (1)
- # clj-kondo (6)
- # cljdoc (3)
- # clojure (74)
- # clojure-brasil (2)
- # clojure-china (6)
- # clojure-italy (16)
- # clojure-nl (1)
- # clojure-spec (23)
- # clojure-uk (5)
- # clojurebridge (1)
- # clojuredesign-podcast (8)
- # clojurescript (4)
- # community-development (1)
- # data-science (1)
- # datavis (1)
- # datomic (5)
- # duct (18)
- # graalvm (2)
- # kaocha (3)
- # onyx (3)
- # other-languages (1)
- # pathom (4)
- # reagent (61)
- # reitit (5)
- # shadow-cljs (8)
- # tools-deps (11)
- # vim (1)
am i right that there is no way to combine aliases in deps.edn? so instead of writing clj -A:one:two
i could just write clj -A:two
and it would pull in :one
automatically. i know you can't pass aliases to :main-opts so i'm guessing i just need to write them both explicitly
Any pointers to approaches/libraries that are similar to the intent of pomegranate/alembic to allow for reloading of deps.edn within a running repl (to pull in a new dep) or to dynamically add in a dep on the repl (to kickstart a download and adding to the classpath)?
@dharrigan tools.deps
has a branch with add-lib
that dynamically adds new libraries to the running system...
sweet, ta @seancorfield!
You can use it from GitHub today https://github.com/seancorfield/dot-clojure/blob/master/deps.edn#L106-L119
That also has an example of how to add master from GitHub 🙂