You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2018. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
webpack-cleanup-plugin is causing a warning with Webpack 4. When I run
node --trace-deprecation ./node_modules/.bin/webpack
get this: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.
The text was updated successfully, but these errors were encountered: