I'm having an issue where doing lein jar
or lein uberjar
on a project never finishes, but instead creates a jar that just keeps getting bigger indefinitely (I've let it run up to 40GB, whereas the resulting jar should only be 100MB)
anyone ever seen such a thing? I have no idea how to start debugging this... I also can't see what Leiningen is stuffing in there, because when I interrupt it the result is not a valid jar/zip
something similar to this was discussed in recent past, maybe in #leiningen - something like recursively including the results of the jar process in the jar? I don't remember the details.
thanks, I'll see what I can find... seems it doesn't happen when AOT is disabled
it was something to do with which directories were getting included
this seems to be the same or a similar issue: https://github.com/bhauman/figwheel-main/issues/134
yeah
target is where .class output goes so could be aot-specific
taking "target"
out of :resource-paths
now, I'm guessing that will fix it
just migrated this project to figwheel-main, which must've been why I added target
there
yay, it worked 🙂 thanks @alexmiller