Socket
Socket
Sign inDemoInstall

postcss-loader

Package Overview
Dependencies
Maintainers
2
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-loader - npm Package Compare versions

Comparing version 2.0.8 to 2.0.9

10

CHANGELOG.md

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

<a name="2.0.9"></a>
## [2.0.9](https://github.com/postcss/postcss-loader/compare/v2.0.8...v2.0.9) (2017-11-24)
### Bug Fixes
* **index:** filter `ident` (`options.ident`) ([#315](https://github.com/postcss/postcss-loader/issues/315)) ([3e1c7fa](https://github.com/postcss/postcss-loader/commit/3e1c7fa))
<a name="2.0.8"></a>

@@ -7,0 +17,0 @@ ## [2.0.8](https://github.com/postcss/postcss-loader/compare/v2.0.6...v2.0.8) (2017-10-14)

16

lib/index.js

@@ -54,8 +54,12 @@ 'use strict'

const length = Object.keys(options)
.filter((option) => {
// if (option === 'exec') return
if (option === 'config') return
if (option === 'sourceMap') return
return option
.filter((option) => {
switch (option) {
// case 'exec':
case 'ident':
case 'config':
case 'sourceMap':
return
default:
return option
}
})

@@ -62,0 +66,0 @@ .length

{
"name": "postcss-loader",
"version": "2.0.8",
"version": "2.0.9",
"description": "PostCSS loader for webpack",

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

@@ -353,3 +353,3 @@ [![npm][npm]][npm-url]

[`importLoaders`]: https://github.com/webpack-contrib/css-loader#importing-and-chained-loaders
[`importLoaders`]: https://github.com/webpack-contrib/css-loader#importloaders
[cannot be used]: https://github.com/webpack/css-loader/issues/137

@@ -356,0 +356,0 @@ [CSS Modules]: https://github.com/webpack/css-loader#css-modules

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