speed-measure-webpack-plugin icon indicating copy to clipboard operation
speed-measure-webpack-plugin copied to clipboard

Is this repo still under maintenance?

Open Wzb3422 opened this issue 3 years ago • 2 comments

speed-measure-webpack-plugin is a Great plugin which helped me a lot. I appreciate all the effort and hard work that the author and contributors put into.❤️ However, It seems that @stephencookdev didn't contribute much code in the last year, and the plugin hasn't be updated since 28 Mar, 2021. Is this repo still under maintenance? Or is there any plan about OSS community taking over this project?

Wzb3422 avatar Apr 08 '22 11:04 Wzb3422

Hi guys, I am writing a successor of this plugin: https://github.com/ShuiRuTian/time-analytics-webpack-plugin. You could have a try with it. I believe it's providing a better experience for webpack 5.

It's in an early period(the API is not frozen and maybe buggy), but it's working for me.

Any feedback is welcomed!

ShuiRuTian avatar Nov 29 '22 08:11 ShuiRuTian

Try my fork npm install --save-dev git+ssh://[email protected]:DzmVasileusky/speed-measure-webpack-plugin.git

const SpeedMeasurePlugin = require("speed-measure-webpack-plugin");

const smp = new SpeedMeasurePlugin();

const webpackConfig = smp.wrap(
{
  plugins: [new MyPlugin(), new MyOtherPlugin()],
},
{
  pluginsToExclude: ['MiniCSSExtractPlugin', 'AngularWebpackPlugin']
}
);

Working with at least "webpack": "5.74.0", you just need to exclude not compatible plugins

DzmVasileusky avatar Jun 01 '23 12:06 DzmVasileusky