-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
HMR multiStep mode is broken in webpack 2 #533
Comments
Could we expose stats.entrypoints also in webpack 1.x? |
|
@sokra Is there any reason not to add |
Is this still being worked on ? |
The problem is:
It occurs here. Specifically:
The problem was introduced quite a while ago: be966e7#diff-168726dbe96b3ce427e7fedce31bb0bcR195. |
Actually, scratch that. It's the |
This issue had no activity for at least half a year. It's subject to automatic issue closing if there is no activity in the next 15 days. |
Here, when changing some js file it realoads the old version |
is this fixed on master? or latest version? |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Currently enabling
multiStep
mode inHotModuleReplacementPlugin
breaks html-webpack-plugin. The page simply won't refresh correctly breaking the system. The fix for this requires an underlying change as discussed below.To quote @sokra
Here's a quick search against webpack source, but I can't find a definitive plugin example on a quick look.
To keep this backwards compatible we would need some way to check webpack version. A simple way to do that is to go through
require('webpack/package.json').version
although it would be better if plugins received the version information from webpack (does this happen already?).Related to #401.
The text was updated successfully, but these errors were encountered: