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

postcss-merge-idents

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-merge-idents - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

4

CHANGELOG.md

@@ -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 @@

3

index.js
'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"
}
}
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