speed-measure-webpack-plugin
speed-measure-webpack-plugin copied to clipboard
⏱ See how fast (or not) your plugins and loaders are, so you can optimise your builds
webpack Plugins can provide hooks for other Plugins; take [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) for example, we can write a custom plugin depending on it ``` js // If your plugin is direct dependent...
This PR resolves the deprecation warning with regards to the normal-module-loader, invoking the loader from it's new location. Also, adding an option of passing an array of strings of names...
First of all, thanks for the plugin , it provides the exact numbers that I can report to my boss when I write the technical proposal.  As a...
When the time increases "faster" is written and when it decreases "slower". It should be the other way around. I believe this is the culprit- https://github.com/stephencookdev/speed-measure-webpack-plugin/blob/ca66781752e4d11a0730a444b7c21947a569cd1b/index.js#L129 Example of an output...
Hello speed-measure-webpack-plugin Team, I'm encountering an issue where the integration of `speed-measure-webpack-plugin` (`smp`) with `case-sensitive-paths-webpack-plugin` seems to distort the performance metrics reported by `smp`. **Issue Description:** When running builds with...
`webpack.config.ts`: ```ts import path from 'path'; import webpack from 'webpack'; import SpeedMeasurePlugin from 'speed-measure-webpack-plugin'; const config: webpack.Configuration = { mode: 'production', entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), clean: true,...
I am using a private corporate repo that uses webpack. This plugin reports that the IgnorePlugin step alone takes 21 minutes (the whole build takes 45 minutes); however, when I...