tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
2020-07-07T15:44:43.285900Z

@seancorfield might be time to consider creating a #seans-deps-edn channel here? 😉

😆 2
2020-07-07T23:13:40.289800Z

Is there a preference or recommendation between these two (equivalent) styles of specifying a version:

{:deps {some/library {:mvn/version "2.7.42"}}}
and
{:deps {some/library #:mvn {:version "2.7.42"}}}
? (yes I realise this is a stylistic question not a technical one - I’m wondering if there’s a preferred / recommended / idiomatic style for deps.edn content)

2020-07-07T23:32:16.289900Z

I'd say namespaced maps are not mentioned in https://github.com/edn-format/edn, so if deps.edn is intended to live up to the .edn on the end, leave out the namespaced maps

💯 2
2020-07-07T23:34:47.290300Z

Ooooh that’s very interesting! Thanks!