Socket
Socket
Sign inDemoInstall

style-loader

Package Overview
Dependencies
Maintainers
7
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

style-loader - npm Package Compare versions

Comparing version 0.18.1 to 0.18.2

11

CHANGELOG.md

@@ -5,2 +5,13 @@ # Change Log

<a name="0.18.2"></a>
## [0.18.2](https://github.com/webpack/style-loader/compare/v0.18.1...v0.18.2) (2017-06-05)
### Bug Fixes
* **url:** use `loaderUtils.stringifyRequest` to avoid invalidating hashes due to absolute paths ([#242](https://github.com/webpack/style-loader/issues/242)) ([97508ec](https://github.com/webpack/style-loader/commit/97508ec))
* Add `null` check to `removeStyleElement` ([#245](https://github.com/webpack/style-loader/issues/245)) ([0a4845c](https://github.com/webpack/style-loader/commit/0a4845c))
<a name="0.18.1"></a>

@@ -7,0 +18,0 @@ ## [0.18.1](https://github.com/webpack/style-loader/compare/v0.18.0...v0.18.1) (2017-05-23)

2

lib/addStyles.js

@@ -169,6 +169,6 @@ /*

function removeStyleElement (style) {
if (style.parentNode === null) return false;
style.parentNode.removeChild(style);
var idx = stylesInsertedAtTop.indexOf(style);
if(idx >= 0) {

@@ -175,0 +175,0 @@ stylesInsertedAtTop.splice(idx, 1);

{
"name": "style-loader",
"version": "0.18.1",
"version": "0.18.2",
"author": "Tobias Koppers @sokra",

@@ -22,9 +22,9 @@ "description": "style loader module for webpack",

"devDependencies": {
"css-loader": "^0.28.1",
"css-loader": "^0.28.3",
"file-loader": "^0.11.1",
"jsdom": "^9.12.0",
"memory-fs": "^0.4.1",
"mocha": "^3.2.0",
"mocha": "^3.4.2",
"standard-version": "^4.0.0",
"webpack": "^2.2.1"
"webpack": "^2.6.1"
},

@@ -31,0 +31,0 @@ "scripts": {

@@ -21,3 +21,3 @@ /*

"// style-loader: Adds some reference to a css file to the DOM by adding a <link> tag",
"var update = require(" + JSON.stringify("!" + path.join(__dirname, "lib", "addStyleUrl.js")) + ")(",
"var update = require(" + loaderUtils.stringifyRequest(this, "!" + path.join(__dirname, "lib", "addStyleUrl.js")) + ")(",
"\trequire(" + loaderUtils.stringifyRequest(this, "!!" + request) + ")",

@@ -24,0 +24,0 @@ ", " + JSON.stringify(options) + ");",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc