🚀 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
4
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
6.0.9

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 6.0.9
- Fixed: `Combinator.raws` property type
# 6.0.8

@@ -2,0 +6,0 @@

2

package.json
{
"name": "postcss-selector-parser",
"version": "6.0.8",
"version": "6.0.9",
"devDependencies": {

@@ -5,0 +5,0 @@ "@babel/cli": "^7.11.6",

@@ -342,4 +342,12 @@ // Type definitions for postcss-selector-parser 2.2.3

interface CombinatorRaws {
value?: string;
spaces?: {
before?: string;
after?: string;
};
}
interface Combinator extends Base {
type: "combinator"
type: "combinator";
raws?: CombinatorRaws;
}

@@ -346,0 +354,0 @@ function combinator(opts: NodeOptions): Combinator;