Socket
Socket
Sign inDemoInstall

postcss-selector-parser

Package Overview
Dependencies
2
Maintainers
4
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.15 to 6.0.16

4

CHANGELOG.md

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

# 6.0.16
- Fixed: add missing `index` argument to `each`/`walk` callback types (#289)
# 6.0.15

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

5

package.json
{
"name": "postcss-selector-parser",
"version": "6.0.15",
"version": "6.0.16",
"devDependencies": {

@@ -36,3 +36,4 @@ "@babel/cli": "^7.11.6",

"scripts": {
"pretest": "eslint src && tsc --noEmit postcss-selector-parser.d.ts",
"typecheck": "tsc --noEmit --strict postcss-selector-parser.d.ts postcss-selector-parser.test.ts",
"pretest": "eslint src && npm run typecheck",
"prepare": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",

@@ -39,0 +40,0 @@ "lintfix": "eslint --fix src",

@@ -240,5 +240,5 @@ // Type definitions for postcss-selector-parser 2.2.3

insertBefore(oldNode: Child, newNode: Child): this;
each(callback: (node: Child) => boolean | void): boolean | undefined;
each(callback: (node: Child, index: number) => boolean | void): boolean | undefined;
walk(
callback: (node: Node) => boolean | void
callback: (node: Node, index: number) => boolean | void
): boolean | undefined;

@@ -245,0 +245,0 @@ walkAttributes(

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc