Sha256: 0471c6c139bd68aa4421295bac8c668f94f4d0f069ddc0097a7cd4e466c97d3e

Contents?: true

Size: 1.59 KB

Versions: 26

Compression:

Stored size: 1.59 KB

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
/*globals window __webpack_hash__ */
if (module.hot) {
	var lastHash;
	var upToDate = function upToDate() {
		return lastHash.indexOf(__webpack_hash__) >= 0;
	};
	var log = require("./log");
	var check = function check() {
		module.hot
			.check(true)
			.then(function(updatedModules) {
				if (!updatedModules) {
					log("warning", "[HMR] Cannot find update. Need to do a full reload!");
					log(
						"warning",
						"[HMR] (Probably because of restarting the webpack-dev-server)"
					);
					window.location.reload();
					return;
				}

				if (!upToDate()) {
					check();
				}

				require("./log-apply-result")(updatedModules, updatedModules);

				if (upToDate()) {
					log("info", "[HMR] App is up to date.");
				}
			})
			.catch(function(err) {
				var status = module.hot.status();
				if (["abort", "fail"].indexOf(status) >= 0) {
					log(
						"warning",
						"[HMR] Cannot apply update. Need to do a full reload!"
					);
					log("warning", "[HMR] " + log.formatError(err));
					window.location.reload();
				} else {
					log("warning", "[HMR] Update failed: " + log.formatError(err));
				}
			});
	};
	var hotEmitter = require("./emitter");
	hotEmitter.on("webpackHotUpdate", function(currentHash) {
		lastHash = currentHash;
		if (!upToDate() && module.hot.status() === "idle") {
			log("info", "[HMR] Checking for updates on the server...");
			check();
		}
	});
	log("info", "[HMR] Waiting for update signal from WDS...");
} else {
	throw new Error("[HMR] Hot Module Replacement is disabled.");
}

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.18.0 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.18.2 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.16.1 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.15.2 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.18.4 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.18.1 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.14.0 test/dummy/node_modules/webpack/hot/dev-server.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/hot/dev-server.js
tang-0.2.1 spec/tang_app/node_modules/webpack/hot/dev-server.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/hot/dev-server.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/hot/dev-server.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/hot/dev-server.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/hot/dev-server.js
tang-0.2.0 spec/tang_app/node_modules/webpack/hot/dev-server.js
tang-0.1.0 spec/tang_app/node_modules/webpack/hot/dev-server.js
tang-0.0.9 spec/tang_app/node_modules/webpack/hot/dev-server.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/hot/dev-server.js
jester-data-8.0.0 node_modules/webpack/hot/dev-server.js