-
-
Notifications
You must be signed in to change notification settings - Fork 273
refactor(index): remove Tapable.apply
calls
#121
Conversation
src/index.js
Outdated
|
||
const subCache = `subcache ${__dirname} ${request}`; | ||
|
||
// TODO use `worker.compiler.hooks.compilation.tap()` instead |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is more subtle than this: the next
branch must use webpack@4
before.
Tapable.apply
calls
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ooflorent this is work on webpack 3 and/or 2? Maybe also next branch?
@evilebottnawi |
@ooflorent thanks for clarify, need accept CLA 😄 |
@evilebottnawi done |
@ooflorent looks like the CLA isn't signed yet according to clabot. |
All fine. |
I've updated the PR to target |
@ooflorent this is going to need an upstream rebase to pass CI unfortunately. |
Any news on this? |
Is there anything stopping from this being merged? |
@WhoAteDaCake yes, as clearly indicated by the conversation and comment made on this PR 14 days ago. please do refrain from comments with questions such as that and the previous "Any news on this?" They don't contribute anything meaningful to the PR or associated issue. The submitter (@ooflorent in this case) will have already been aware of the last comment requesting additional work and they'll come back to it when they have the time available to do so. |
I've rebased the PR. |
Codecov Report
@@ Coverage Diff @@
## master #121 +/- ##
=======================================
Coverage 66.21% 66.21%
=======================================
Files 5 5
Lines 74 74
Branches 25 25
=======================================
Hits 49 49
Misses 22 22
Partials 3 3
Continue to review full report at Codecov.
|
@shellscape or @d3viant0ne Could we get a new version tagged with this change, please? This is the only remaining loader/plugin in my webpack config that is still throwing deprecation warnings in webpack v4 and it's driving me nuts 😅 🙏 |
* Remove Tapable.apply calls * chore: add code comment for clarity, trigger circle
Tapable.apply
is deprecated intapable@1.0.0-x
.The plugins should now call
apply
themselves.Fixes #136