Socket
Socket
Sign inDemoInstall

postcss-selector-parser

Package Overview
Dependencies
3
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.1 to 2.2.2

5

CHANGELOG.md

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

# 2.2.2
* No longer hangs on an unescaped semicolon; instead the parser will throw
an exception for these cases.
# 2.2.1

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

@@ -237,2 +237,6 @@ 'use strict';

Parser.prototype.missingBackslash = function missingBackslash() {
return this.error('Expected a backslash preceding the semicolon.');
};
Parser.prototype.missingParenthesis = function missingParenthesis() {

@@ -552,2 +556,5 @@ return this.error('Expected opening parenthesis.');

break;
case ';':
this.missingBackslash();
break;
case ',':

@@ -554,0 +561,0 @@ this.comma();

2

package.json
{
"name": "postcss-selector-parser",
"version": "2.2.1",
"version": "2.2.2",
"devDependencies": {

@@ -5,0 +5,0 @@ "ava": "^0.16.0",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc