Ryan Wilson-Perkin
Ryan Wilson-Perkin
I noticed today while building an application that pulls in styles from a package that browserslist was using that package's browserslist config rather than the one that I define in...
I've also noticed this issue affecting some of our builds that use a cache produced in CI and re-used on subsequent CI runs. For us, it seems to happen particularly...
Hoping to yes, I haven't been able to reproduce the bug yet unfortunately
Interestingly it doesn't seem like it's the filename that's getting lost, it's the `data` itself that's `undefined` based on my reading of the error `Cannot read properties of undefined (reading...
@alexander-akait managed to get a minimal reproduction here: https://github.com/ryanwilsonperkin/webpack-16160 This is just using the image minimizing plugin as well as the filesystem cache. Full reproduction steps in the readme of...
Further discovery, by dropping a couple of console logs in the `AssetModulesPlugin.js` I was able to find that the `data` object is always `undefined` for this asset, it's just that...
Interestingly, if I install the `imagemin-pngquant` library and add "png" to the list of files that I want to pass through the minifier, it _does not_ cause errors across re-builds,...
> (recommended, because import png from "./image.png" is not supporting without a bundler) > With new URL(...) you will not have these problem (and as I written above it is...
In the case of `asset/inline` the bundler would take the asset and inline it into the source as a data URI. If we were using `new URL("./image.svg", import.meta.url)` then i...
Would also love to see this, would be happy to pay more for larger build instance sizes. In CI our build runs in ~1 minute on a powerful server, in...