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
When the `outputTarget` option is set, a console.log gives the information about that. This looks more like a debug message anyways and should be removed as it might break the...
Fixes https://github.com/stephencookdev/speed-measure-webpack-plugin/issues/118 `html-webpack-plugin`'s hook relies on referential equality of `compilation` instance. (see https://github.com/jantimon/html-webpack-plugin/blob/master/lib/hooks.js#L77-L85) Currently, creating a new proxy every time breaks that referential equality. This fix uses `WeakMap` to make...
This code is invoking a "DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead" https://github.com/stephencookdev/speed-measure-webpack-plugin/blob/24052675160ceaf42f53d06e3da538ecf04e9e81/WrappedPlugin/index.js#L58-L70 Perhaps this similar fix in another library could be a guide for a PR...
``` ERROR in TypeError: Cannot read property 'hash' of undefined - compiler.js:265 [aurox-client-web]/[html-webpack-plugin]/lib/compiler.js:265:30 - runMicrotasks - task_queues.js:93 processTicksAndRejections internal/process/task_queues.js:93:5 ``` When I disable the `speed-measure-webpack-plugin` the error goes away, might...
``` const webpack = require("webpack"); const path = require("path"); const paths = { client: path.resolve(__dirname, "../src"), dist: path.resolve(__dirname, "../dist"), config: path.resolve(__dirname) }; const babelConfig = require("./babel-loader.config.js"); const isDev = process.env.NODE_ENV...
Hey! Thanks for this project :) I ran into issues that are maybe related to #44: When including `HtmlWebpackHarddiskPlugin` and/or `BaseHrefWebpackPlugin` I get the following errors: [`HtmlWebpackHarddiskPlugin`](https://github.com/jantimon/html-webpack-harddisk-plugin): ``` TypeError: HtmlWebpackPlugin.getHooks...
Enabling `granularLoaderData` causes`error: options/query provided without loader (use loader + options) in` error Is there somethign else i need to do? Full console output: >Error: options/query provided without loader (use...
 webpack.config.js ``` plugins.push(new AutoDllPlugin({ inject: true, filename: '[name]_[hash:8].js', debug: true, path: './dll', entry: { vendor: [ 'vue-router', 'vuex', 'nprogress', ], }, })); ```
My webpack configuration returns a function receiving the "env" argument and returns multiple configurations. How am I supposed to integrate SMP with such a config? Thanks in advance!
when I use speed-measure-webpack-plugin in my project, html-webpack-tags-plugin(and assets-webpack-plugin) not effect, is some options I need to config? this demo you can try. [**Demo**](https://github.com/snowtreetree/webpack-demo),  you can use config or...