-
Notifications
You must be signed in to change notification settings - Fork 26
Closed
Labels
Description
Ref: webpack/compression-webpack-plugin#236
It is wrong to do this https://github.com/FormidableLabs/webpack-stats-plugin/blob/main/lib/stats-writer-plugin.js#L140 (maybe time to typescript or typescript jsdoc to avoid these problems in future).
It should be for webpack@5:
const source = curCompiler.webpack
// webpack@5
? curCompiler.webpack.sources.RawSource(statsBuf)
// webpack@4
: {
source() {
return statsBuf;
},
size() {
return statsBuf.length;
}
}Reactions are currently unavailable