Skip to content

Commit

Permalink
Fixed typo in console output on npm start
Browse files Browse the repository at this point in the history
- HRM => HMR
- updated case
  • Loading branch information
sthzg committed Aug 11, 2016
1 parent 0e8d82a commit e2ef6cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ compiler.plugin('done', () => {
// Ensures that we log after webpack printed its stats (is there a better way?)
setTimeout(() => {
console.log('\n✓ The bundle is now ready for serving!\n');
console.log(' Open in iframe Mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/webpack-dev-server/');
console.log(' Open in inline Mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/\n');
console.log(' \x1b[33mHRM is active\x1b[0m. The bundle will automatically rebuild and live-update on changes.')
console.log(' Open in iframe mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/webpack-dev-server/');
console.log(' Open in inline mode:\t\x1b[33m%s\x1b[0m', 'http://localhost:' + config.port + '/\n');
console.log(' \x1b[33mHMR is active\x1b[0m. The bundle will automatically rebuild and live-update on changes.')
}, 350);
}
isInitialCompilation = false;
Expand Down

0 comments on commit e2ef6cf

Please sign in to comment.