tools-deps

tcarls 2023-05-02T21:55:15.736029Z

What's the equivalent to -Atarget when using clj -X:deps tree instead of clj -Stree?

seancorfield 2023-05-02T21:58:25.076619Z

clojure -X:deps tree :aliases '[:target]'

tcarls 2023-05-02T21:58:47.193169Z

Thank you

seancorfield 2023-05-02T21:58:52.929879Z

Several of the tools.deps functions understand :aliases

seancorfield 2023-05-02T21:59:44.879259Z

FWIW, this will give you help and docstrings for all those functions:

clojure -X:deps help/doc

tcarls 2023-05-02T22:00:30.386149Z

nod; I found the doc string, but wasn't understanding it correctly

tcarls 2023-05-02T22:02:14.774769Z

(...hm; Also have a place where clj -Stree -T:build was being used instead of -A:build)

tcarls 2023-05-03T00:13:03.489349Z

ends up using clj -Strace -T:build followed by clj -X:deps tree :file "\"trace.edn\"" ; ugly, but it works.