Socket
Socket
Sign inDemoInstall

css-hot-loader

Package Overview
Dependencies
13
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.2 to 1.4.3

4

History.md

@@ -0,1 +1,5 @@

### 1.4.3 2018-12-12
- feat: replace appendChild by insertBefore by [@focus7eleven](https://github.com/focus7eleven) [#54](https://github.com/shepherdwind/css-hot-loader/pull/54)
### 1.4.2 2018-08-15

@@ -2,0 +6,0 @@

3

hotModuleReplacement.js

@@ -65,3 +65,4 @@ var normalizeUrl = require('normalize-url');

newEl.href = url + '?' + Date.now();
el.parentNode.appendChild(newEl);
// insert new <link /> right to the old one's position
el.parentNode.insertBefore(newEl, el.nextSibling);
}

@@ -68,0 +69,0 @@

{
"name": "css-hot-loader",
"version": "1.4.2",
"version": "1.4.3",
"description": "css hot reload work with extract-text-webpack-plugin",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc