postcss-merge-idents
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -0,1 +1,5 @@ | ||
# 2.1.2 | ||
* Fixes a bug where sometimes values would be substituted by JS code. | ||
# 2.1.1 | ||
@@ -2,0 +6,0 @@ |
'use strict'; | ||
var hasOwn = require('has-own'); | ||
var postcss = require('postcss'); | ||
@@ -8,3 +9,3 @@ var valueParser = require('postcss-value-parser'); | ||
return function recurse (key) { | ||
if (obj[key] && obj[key] !== key) { | ||
if (hasOwn(key, obj)) { | ||
return recurse(obj[key]); | ||
@@ -11,0 +12,0 @@ } |
{ | ||
"name": "postcss-merge-idents", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Merge keyframe and counter style identifiers.", | ||
@@ -15,2 +15,3 @@ "main": "index.js", | ||
"css", | ||
"merge", | ||
"postcss", | ||
@@ -22,3 +23,3 @@ "postcss-plugin" | ||
"tap-spec": "^4.1.0", | ||
"tape": "^4.2.0" | ||
"tape": "^4.2.2" | ||
}, | ||
@@ -33,5 +34,6 @@ "homepage": "https://github.com/ben-eb/postcss-merge-idents", | ||
"dependencies": { | ||
"postcss": "^5.0.4", | ||
"postcss-value-parser": "^3.0.2" | ||
"has-own": "^1.0.0", | ||
"postcss": "^5.0.10", | ||
"postcss-value-parser": "^3.1.1" | ||
} | ||
} |
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
6412
73
3
+ Addedhas-own@^1.0.0
+ Addedhas-own@1.0.1(transitive)
Updatedpostcss@^5.0.10
Updatedpostcss-value-parser@^3.1.1