-
Notifications
You must be signed in to change notification settings - Fork 506
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tapable is deprecated in Webpack 4 #194
Comments
Was this ever cured somewhere else? I am having the same issue using the latest version so far as I can tell? |
My solution was to migrate to vue-cli, I have no idea what Webpack version it uses... but it's not longer our concern when using it. It wasn't as difficult as I predicted... the hardest part was setting computed env vars, but even that was relatively easy |
@rayfoss that is my typical first choice, however, I have a few existing apps that don’t use it and I have to “roll my own”. To be quite honest, I am surprised this issue still exists? |
Shouldn't be... CLI has been pushed hard over the last year, and it doesn't
have that issue. The issue happens when you upgrade to Webpack 4, it's
actually easier to upgrade to CLI v3
On Tue, Sep 4, 2018 at 10:37 AM Mike Erickson ***@***.***> wrote:
@rayfoss <https://github.com/rayfoss> that is my typical first choice,
however, I have a few existing apps that don’t use it and I have to “roll
my own”.
To be quite honest, I am surprised this issue still exists?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#194 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA1eLGVH-lFDHwwvFaFtnh9fCrHBnmAoks5uXp4rgaJpZM4U6nVN>
.
--
*Ray Foss*
|
webpack/webpack#6568 (comment)
Here's the trace with
process.traceDeprecation = true
a top of webpack.base.conf.jsLine 41+ of dev-server
The solution seems to be
compiler.hooks.done.tap('compilation', function (compilation) {
though I'm really unsure about what any of this is forThe text was updated successfully, but these errors were encountered: