tools-deps

Discuss tools.deps.alpha, tools.build, and the clj/clojure command-line scripts! See also #depstar #clj-new
2021-05-25T20:31:02.051Z

This is referencing something back a good ways, but for typing out long commands, this is exactly the usecase of https://github.com/casey/just , and if you need to do something slightly more complicated like making a deploy task that'll auto-build a jar you might want to look into GNU Make. A lot of people don't consider make much these days, but it fits really well into the part of the ecosystem around dealing with the build process of using the clojure cli.

2021-05-25T20:31:14.051300Z

@dpsutton

👀 1
borkdude 2021-05-25T20:56:06.052200Z

@suskeyhose babashka has a task runner which is inspired by just

2021-05-25T20:56:52.052700Z

Oh cool! I saw you talking about a babashka task runner, but I'll admit I haven't really looked into babashka just yet.

2021-05-25T20:57:15.053200Z

Or at least not since a long time ago, back when I was starting with Clojure.

borkdude 2021-05-25T20:57:27.053500Z

It's explained here, in case you want to have a look: https://book.babashka.org/#tasks

2021-05-25T20:59:59.053800Z

Thanks!