What's the natural way to chain together a chain of isolated build steps each with there own dependencies. E.g use one jvm to compile cljs to js. Then use another to compile clj to class files.
I know this can be done on the command line with two calls. But I'm just triple checking it can't fit in one like clj -A:cljss:clj
I'm under the impression babashka tasks are good at this.
lots of people use babashka. i like just, the command runner
Hereโs how we do it: https://github.com/metabase/metabase/blob/master/bin/build.sh
You can trace that back to our root deps edn, the aliases, whatโs in the classpath, etc