From de98e0b232509d5f40c135d540a70e415272ff85 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 3 May 2017 15:35:00 +0200 Subject: node_modules --- node_modules/webpack/hot/signal.js | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 node_modules/webpack/hot/signal.js (limited to 'node_modules/webpack/hot/signal.js') diff --git a/node_modules/webpack/hot/signal.js b/node_modules/webpack/hot/signal.js new file mode 100644 index 000000000..fffd35075 --- /dev/null +++ b/node_modules/webpack/hot/signal.js @@ -0,0 +1,50 @@ +/* + MIT License http://www.opensource.org/licenses/mit-license.php + Author Tobias Koppers @sokra +*/ +/*globals __resourceQuery */ +if(module.hot) { + var checkForUpdate = function checkForUpdate(fromUpdate) { + module.hot.check().then(function(updatedModules) { + if(!updatedModules) { + if(fromUpdate) + console.log("[HMR] Update applied."); + else + console.warn("[HMR] Cannot find update."); + return; + } + + return module.hot.apply({ + ignoreUnaccepted: true, + onUnaccepted: function(data) { + console.warn("Ignored an update to unaccepted module " + data.chain.join(" -> ")); + }, + }).then(function(renewedModules) { + require("./log-apply-result")(updatedModules, renewedModules); + + checkForUpdate(true); + }); + }).catch(function(err) { + var status = module.hot.status(); + if(["abort", "fail"].indexOf(status) >= 0) { + console.warn("[HMR] Cannot apply update."); + console.warn("[HMR] " + err.stack || err.message); + console.warn("[HMR] You need to restart the application!"); + } else { + console.warn("[HMR] Update failed: " + err.stack || err.message); + } + }); + }; + + process.on(__resourceQuery.substr(1) || "SIGUSR2", function() { + if(module.hot.status() !== "idle") { + console.warn("[HMR] Got signal but currently in " + module.hot.status() + " state."); + console.warn("[HMR] Need to be in idle state to start hot update."); + return; + } + + checkForUpdate(); + }); +} else { + throw new Error("[HMR] Hot Module Replacement is disabled."); +} -- cgit v1.2.3