tolitius / mount

managing Clojure and ClojureScript app state since (reset)
Eclipse Public License 1.0
1.22k stars 88 forks source link

Please consider providing deps.edn to support consuming from git #131

Closed ieugen closed 5 months ago

ieugen commented 5 months ago

Hello,

Please consider providing deps.edn file to allow consumption via git for the library.

It will make it easier to test things like https://github.com/tolitius/mount/pull/130 before a release is cut.

Thank you,

rome-user commented 5 months ago

This isnt needed for git consumption. You can use Leiningen plugins like lein-git-down or, in the case of deps.edn, set :deps/manifest then you can use the project as normal (see https://clojure.org/reference/deps_edn#_shared_dep_attributes)

ieugen commented 5 months ago

Thanks