postcss-merge-rules
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -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 @@ |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12346