We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1126b7 commit c3299edCopy full SHA for c3299ed
index.js
@@ -49,9 +49,11 @@ module.exports = class SpeedMeasurePlugin {
49
});
50
51
if (config.optimization && config.optimization.minimizer) {
52
- config.optimization.minimizer = config.optimization.minimizer.map(plugin => {
53
- return new WrappedPlugin(plugin, plugin.constructor.name, this);
54
- });
+ config.optimization.minimizer = config.optimization.minimizer.map(
+ plugin => {
+ return new WrappedPlugin(plugin, plugin.constructor.name, this);
55
+ }
56
+ );
57
}
58
59
if (config.module && this.options.granularLoaderData) {
0 commit comments