LariSinisalo
LariSinisalo
Before creating the minimal reproduction sample, I tried to debug the compilation problem using the method documented at https://indepth.dev/posts/1166/this-will-make-you-more-efficient-at-debugging-webpack-unspecified-build-errors This led to finding out that the error message source is...
I noticed that this issue would probably better fit under https://github.com/intlify/bundle-tools/ . If so, would it be possible to transfer this issue there?
Where did you find these rules? The rules block in the reproduction sample is empty, so is this a result generated by some later processing step?
By debugging the webpack run to check the rules, I noticed that in node_modules/unplugin/dist/index.js there is: ``` if (plugin.load) { compiler.options.module.rules.unshift({ include(id) { if (id.startsWith(plugin.__virtualModulePrefix)) id = decodeURIComponent(id.slice(plugin.__virtualModulePrefix.length)); if (plugin.loadInclude...
Even with a workaround in place, the @intlify/unplugin-vue-i18n seemed to interfere with source maps next. I ended up moving the @intlify/unplugin-vue-i18n usage to a separate project that has no other...
I am unfortunately unable to share the server application code due to it being proprietary. A reproduction could perhaps be created by just using a single RestApiClient, making api requests...
A reproduction that triggers an OutOfMemoryError: [issue-60-reproduction.zip](https://github.com/user-attachments/files/17011928/issue-60-reproduction.zip) This package includes: - `ReproductionTest.java`: The reproduction, described below - `pom.xml`: Project Maven configuration for building and running the test class. This limits...
The OutOfMemory error in the reproduction no longer occurs if the REST-API-Client code is patched like this: ``` diff --git a/src/main/java/org/igniterealtime/restclient/RestClient.java b/src/main/java/org/igniterealtime/restclient/RestClient.java index 100c2f7..2e9ca5b 100644 --- a/src/main/java/org/igniterealtime/restclient/RestClient.java +++ b/src/main/java/org/igniterealtime/restclient/RestClient.java @@...
I created a pull request that contains fixes for the problems 1-5. This is likely not a complete fix to all resource leakage as I described in the problem descriptions,...