webpack/hot/dev-server.js

55 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-03-12 06:48:00 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2015-05-22 04:58:22 +08:00
/*globals window __webpack_hash__ */
if(module.hot) {
var lastHash;
var upToDate = function upToDate() {
return lastHash.indexOf(__webpack_hash__) >= 0;
};
var check = function check() {
module.hot.check(true).then(function(updatedModules) {
if(!updatedModules) {
console.warn("[HMR] Cannot find update. Need to do a full reload!");
2015-05-22 04:58:22 +08:00
console.warn("[HMR] (Probably because of restarting the webpack-dev-server)");
window.location.reload();
return;
}
2014-09-03 19:17:37 +08:00
if(!upToDate()) {
2014-08-25 15:50:26 +08:00
check();
}
2015-03-12 06:48:00 +08:00
require("./log-apply-result")(updatedModules, updatedModules);
2014-09-03 19:17:37 +08:00
if(upToDate()) {
2014-08-25 15:50:26 +08:00
console.log("[HMR] App is up to date.");
}
}).catch(function(err) {
if(module.hot.status() in {
2016-06-20 14:21:00 +08:00
abort: 1,
fail: 1
}) {
console.warn("[HMR] Cannot apply update. Need to do a full reload!");
console.warn("[HMR] " + err.stack || err.message);
window.location.reload();
} else {
console.warn("[HMR] Update failed: " + err.stack || err.message);
}
});
};
var hotEmitter = require("./emitter");
hotEmitter.on("webpackHotUpdate", function(currentHash) {
lastHash = currentHash;
if(!upToDate() && module.hot.status() === "idle") {
console.log("[HMR] Checking for updates on the server...");
check();
}
});
console.log("[HMR] Waiting for update signal from WDS...");
} else {
throw new Error("[HMR] Hot Module Replacement is disabled.");
2014-09-03 19:17:37 +08:00
}