Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-merge-rules

Package Overview
Dependencies
Maintainers
2
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-merge-rules - npm Package Compare versions

Comparing version 2.0.2 to 2.0.3

5

CHANGELOG.md

@@ -0,1 +1,6 @@

# 2.0.3
* Fixed an issue where the module was incorrectly merging across `@font-face`
at-rules.
# 2.0.2

@@ -2,0 +7,0 @@

2

dist/index.js

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

var nextRule = second.next();
if (nextRule && nextRule.type !== 'comment') {
if (nextRule && nextRule.type === 'rule') {
var nextIntersection = intersect(getDecls(second), getDecls(nextRule));

@@ -97,0 +97,0 @@ if (nextIntersection.length > intersection.length) {

{
"name": "postcss-merge-rules",
"version": "2.0.2",
"version": "2.0.3",
"description": "Merge CSS rules with PostCSS.",

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

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