tools-build

Ben Sless 2021-11-21T07:38:07.249900Z

Is it possible in compile-clj (or uber) to only compile or copy reachable classes from a given entry point? I know this isn't currently supported, more curious if it's even realistic or worthwhile

borkdude 2021-11-21T09:02:09.251100Z

Isn’t that already the behavior of compile, the function? Just use ns-compile with a single ns?

seancorfield 2021-11-21T17:40:13.252100Z

@borkdude yes, that is specifically something we rely on at work @ben.sless

Alex Miller (Clojure team) 2021-11-21T17:47:42.253200Z

Compile is a side effect of load, which will load the full transitive set of required by default