Socket
Socket
Sign inDemoInstall

postcss-minify-params

Package Overview
Dependencies
13
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0-rc.0 to 4.0.0-rc.1

4

CHANGELOG.md

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

# Head
* Resolves an issue with mangling css-modules' `@value` at-rule.
# 4.0.0-rc.0

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

@@ -58,3 +58,7 @@ 'use strict';

function transform(rule) {
if (!rule.params) {
// We should not re-arrange parameters for css-modules' @value
// at-rule. For example:
//
// @value vertical, center from "./foo.css";
if (!rule.params || rule.name === 'value') {
return;

@@ -61,0 +65,0 @@ }

2

package.json
{
"name": "postcss-minify-params",
"version": "4.0.0-rc.0",
"version": "4.0.0-rc.1",
"description": "Minify at-rule params with PostCSS",

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

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