There was an error while loading. Please reload this page.
1 parent bcde519 commit 066b0acCopy full SHA for 066b0ac
1 file changed
hot/log-apply-result.js
@@ -20,6 +20,9 @@ module.exports = function(updatedModules, renewedModules) {
20
} else {
21
log("info", "[HMR] Updated modules:");
22
renewedModules.forEach(function(moduleId) {
23
+ if(moduleId.lastIndexOf) {
24
+ moduleId = moduleId.substring(moduleId.lastIndexOf("!") + 1);
25
+ }
26
log("info", "[HMR] - " + moduleId);
27
});
28
var numberIds = renewedModules.every(function(moduleId) {
0 commit comments