🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

postcss-selector-parser

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-selector-parser - npm Package Compare versions

Comparing version

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",