tools-deps

agorgl 2025-06-14T17:00:47.148939Z

When using multiple aliases (e.g. clj -M:dev:test:repl/headless:cljs, how are :extra-paths combined?

seancorfield 2025-06-14T17:28:02.601839Z

Concatenated, in the order of the aliases.

seancorfield 2025-06-14T17:31:17.192029Z

(and all paths appear at the start of the classpath, followed by all the other dependencies, see https://clojure.org/reference/deps_edn for more details)

agorgl 2025-06-14T17:42:10.253549Z

Thanks for the info!