^ fun lein imitation script based on deps.edn
klein
š
I am writing a script that is intending to process multiple projectās deps.edn, install the deps, and generate the classpath. Ideally I would to use babashka.deps or babashka.clojure but how would I isolate them? How would I run it in such a way where .cpcache and such are generated according to the projectās respective directory?
@jayzawrotny You mean something like babashka.deps/add-deps
but call it multiple times and get only the resulting classpath for each file?
Correct
Now that I think about it I donāt think babashka.deps or babashka.clojure is the best tool for the job on this one. Perhaps Iām better off shelling out to bb --clojure to process those deps as a separate process in their respective project directories?
Calling add-deps does what it says: it only adds deps to the classpath, it doesn't replace the previous classpath. However, you can hack around this by storing the previous classpath and use str/replace to remove it from the next one. This is relying on the impl detail that the classpath is only concatenated currently and there is no de-duplication whatsoever.
yeah, you can shell out using babashka.process
or clojure.java.shell
and set the :dir
argument to start the processes from a different dir
I think that would be the most reliable
And if I combine that with the --clojure flag it should work on windows?
yes, it should
this is one of the reasons I included this, since clojure on Windows is a bit messy with powershell and shelling out and such
Good idea!
The fs package came at a perfect time too, I didnāt even think about how platform specific my path separators were š
:)