Fork me on GitHub
#clojure-dev
<
2022-04-28
>
arohner09:04:57

rules_clojure, for bazel also: https://github.com/griffinbank/rules_clojure/blob/main/java/rules_clojure/ClojureWorker.java, https://github.com/griffinbank/rules_clojure/blob/main/src/rules_clojure/jar.clj The approach I took is to require deps and then compile, e.g. (non-transitive-compile ’foo.bar) => (do (topo-require-all-deps-of ’foo.bar) (compile ’foo.bar))

cfleming23:04:24

Thanks Allen, that’s interesting - I’ll have to read through all that and then re-work my approach I think.