Socket
Socket
Sign inDemoInstall

webpack-hot-middleware

Package Overview
Dependencies
5
Maintainers
3
Versions
67
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.24.1 to 2.24.2

2

package.json
{
"name": "webpack-hot-middleware",
"version": "2.24.1",
"version": "2.24.2",
"description": "Webpack hot reloading you can attach to your own server",

@@ -5,0 +5,0 @@ "keywords": [

@@ -103,3 +103,3 @@ /**

unacceptedModules.forEach(function(moduleId) {
console.warn("[HMR] - " + moduleMap[moduleId] || moduleId);
console.warn("[HMR] - " + (moduleMap[moduleId] || moduleId));
});

@@ -117,3 +117,3 @@ }

renewedModules.forEach(function(moduleId) {
console.log("[HMR] - " + moduleMap[moduleId] || moduleId);
console.log("[HMR] - " + (moduleMap[moduleId] || moduleId));
});

@@ -132,3 +132,3 @@ }

console.warn("[HMR] Cannot check for update (Full reload needed)");
console.warn("[HMR] " + err.stack || err.message);
console.warn("[HMR] " + (err.stack || err.message));
}

@@ -139,3 +139,3 @@ performReload();

if (options.warn) {
console.warn("[HMR] Update check failed: " + err.stack || err.message);
console.warn("[HMR] Update check failed: " + (err.stack || err.message));
}

@@ -142,0 +142,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc