clr

amar 2026-04-29T18:58:16.705359Z

Hi. Is there a way to AOT all clojure files including transitive dependencies?

dmiller 2026-04-29T19:28:55.833479Z

If you are compiling A.clj there is flag set indicating you are compiling. Any load, such as that done by a 'require' command, taking place when that flag is set will also be a compile. More context?

amar 2026-04-29T19:43:56.775699Z

ok that's good to know. I am worried that if there are any files that are loaded lazily something might get missed ie requiring-resolve or the like.