Fork me on GitHub
#tools-deps
<
2020-02-04
>
Jakub Holý (HolyJak)10:02:10

How do you folks search for tools that build on tools deps, such as clj-new and depstar? And/or is there a list of these tools somewhere?

4
borkdude10:02:09

@holyjak this is documented on the wiki

👍 4
Jakub Holý (HolyJak)11:02:06

Thank you. I have sent a PR to the Deps reference to make it easier to find the page :-)

Derek15:02:23

What’s the recommended way of mixing in a dev resources directory? I have a :dev alias that has :extra-paths ["dev"] but I can’t call ( "local.edn") assuming that file lives within ./dev/resources.

Alex Miller (Clojure team)15:02:40

include it in :extra-paths in an alias

Derek15:02:54

“dev/resources” ?

Alex Miller (Clojure team)15:02:06

well, whatever the path is

Derek15:02:16

I already have “dev” as an extra-path

Derek15:02:36

thanks alex, I will give that a try

Alex Miller (Clojure team)15:02:42

the paths are classpath roots, so any file under that path has to be relative to that root

Alex Miller (Clojure team)15:02:05

so either dev and resources/local.edn or dev/resources and local.edn

Derek15:02:13

makes sense