New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

postcss-modules

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-modules - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

build/index.js

@@ -48,3 +48,3 @@ 'use strict';

var promise = new Promise(function (resolve) {
var promise = new Promise(function (resolve, reject) {
(0, _postcss2.default)([].concat(_toConsumableArray(plugins), [parser.plugin])).process(css, { from: css.source.input.file }).then(function () {

@@ -58,3 +58,3 @@ Object.keys(loader.sources).forEach(function (key) {

resolve();
});
}, reject);
});

@@ -61,0 +61,0 @@

@@ -0,1 +1,4 @@

## 0.4.1
* Fixed processing errors capturing by Boris Serdiuk (@just-boris)
## 0.4.0

@@ -2,0 +5,0 @@ * Added support for custom loaders by Björn Brauer (@ZauberNerd)

{
"name": "postcss-modules",
"version": "0.4.0",
"version": "0.4.1",
"description": "PostCSS plugin to use CSS Modules everywhere",

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

@@ -31,3 +31,3 @@ import postcss from 'postcss';

const promise = new Promise(resolve => {
const promise = new Promise((resolve, reject) => {
postcss([...plugins, parser.plugin])

@@ -43,3 +43,3 @@ .process(css, { from: css.source.input.file })

resolve();
});
}, reject);
});

@@ -46,0 +46,0 @@

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