webpack-cleanup-plugin
webpack-cleanup-plugin copied to clipboard
Tapable.plugin is deprecated
webpack-cleanup-plugin is causing a warning with Webpack 4. When I run node --trace-deprecation ./node_modules/.bin/webpack get this:
(node:50169) DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead
at WebpackCleanupPlugin.apply (.../node_modules/webpack-cleanup-plugin/lib/WebpackCleanupPlugin.js:37:16)
Just replace all compiler.plugin('hookName', ...) calls with compiler.hook.[hookName].tap or compiler.hook.[hookName].tapAsync if it's asynchronous and gets a callback as an argument.