Skip to content

Commit

Permalink
hide loaders in HMR log message
Browse files Browse the repository at this point in the history
  • Loading branch information
rrharvey committed Jul 10, 2017
1 parent bcde519 commit 066b0ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hot/log-apply-result.js
Expand Up @@ -20,6 +20,9 @@ module.exports = function(updatedModules, renewedModules) {
} else {
log("info", "[HMR] Updated modules:");
renewedModules.forEach(function(moduleId) {
if(moduleId.lastIndexOf) {
moduleId = moduleId.substring(moduleId.lastIndexOf("!") + 1);
}
log("info", "[HMR] - " + moduleId);
});
var numberIds = renewedModules.every(function(moduleId) {
Expand Down

0 comments on commit 066b0ac

Please sign in to comment.