tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
borkdude 2021-03-20T21:57:59.131400Z

In the future, will we be able to invoke -A:example for getting a REPL with extra deps from :example, even though it contains :main-opts as well?

{:aliases {:example {;; -A:example (for REPL invocation with extra deps)
                     :extra-deps {medley/medley {:mvn/version "1.3.0"}}
                     ;; -X:example
                     :exec-fn clojure.core/prn
                     :exec-args {:my 1}
                     ;; -M:example
                     :main-opts [-e "(+ 1 2 3)"]}}}

seancorfield 2021-03-20T22:02:31.132Z

That's what I've understood Alex to say about it, yes.

seancorfield 2021-03-20T22:05:18.133300Z

But I also got the impression there's likely to be more to it than just "not executing main opts".