@eslint/css-tree 3.6.2 → 3.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/version.cjs CHANGED
@@ -1 +1 @@
1
- module.exports = "3.6.2";
1
+ module.exports = "3.6.3";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const version = "3.6.2";
1
+ export const version = "3.6.3";
@@ -15,11 +15,17 @@ import {
15
15
  const AMPERSAND = 0x0026; // U+0026 AMPERSAND (&)
16
16
  const DOT = 0x002E; // U+002E FULL STOP (.)
17
17
  const STAR = 0x002A; // U+002A ASTERISK (*);
18
+ const PLUSSIGN = 0x002B; // U+002B PLUS SIGN (+)
19
+ const GREATERTHANSIGN = 0x003E; // U+003E GREATER-THAN SIGN (>)
20
+ const TILDE = 0x007E; // U+007E TILDE (~)
18
21
 
19
22
  const selectorStarts = new Set([
20
23
  AMPERSAND,
21
24
  DOT,
22
- STAR
25
+ STAR,
26
+ PLUSSIGN,
27
+ GREATERTHANSIGN,
28
+ TILDE
23
29
  ]);
24
30
 
25
31
  function consumeRaw() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint/css-tree",
3
- "version": "3.6.2",
3
+ "version": "3.6.3",
4
4
  "description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations",
5
5
  "author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
6
6
  "license": "MIT",