mirror of https://github.com/webpack/webpack.git
Merge pull request #409 from webpack/improve/hot-logging
Add logging about downloading the hot manifest
This commit is contained in:
commit
2f78151967
|
|
@ -1,5 +1,6 @@
|
|||
if(module.hot) {
|
||||
function check() {
|
||||
console.log("Checking for updates on the server...");
|
||||
module.hot.check(function(err, updatedModules) {
|
||||
if(err) {
|
||||
if(module.hot.status() in {abort:1,fail:1})
|
||||
|
|
|
|||
Loading…
Reference in New Issue