@eslint/css-tree 3.6.1 → 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.
@@ -5,11 +5,17 @@ const types = require('../../tokenizer/types.cjs');
5
5
  const AMPERSAND = 0x0026; // U+0026 AMPERSAND (&)
6
6
  const DOT = 0x002E; // U+002E FULL STOP (.)
7
7
  const STAR = 0x002A; // U+002A ASTERISK (*);
8
+ const PLUSSIGN = 0x002B; // U+002B PLUS SIGN (+)
9
+ const GREATERTHANSIGN = 0x003E; // U+003E GREATER-THAN SIGN (>)
10
+ const TILDE = 0x007E; // U+007E TILDE (~)
8
11
 
9
12
  const selectorStarts = new Set([
10
13
  AMPERSAND,
11
14
  DOT,
12
- STAR
15
+ STAR,
16
+ PLUSSIGN,
17
+ GREATERTHANSIGN,
18
+ TILDE
13
19
  ]);
14
20
 
15
21
  function consumeRaw() {
package/data/patch.json CHANGED
@@ -6,6 +6,14 @@
6
6
  "container": {
7
7
  "prelude": "[ <container-name> ]? <container-condition>"
8
8
  },
9
+ "font-face": {
10
+ "descriptors": {
11
+ "unicode-range": {
12
+ "comment": "replaces <unicode-range>, an old production name",
13
+ "syntax": "<urange>#"
14
+ }
15
+ }
16
+ },
9
17
  "nest": {
10
18
  "prelude": "<complex-selector-list>"
11
19
  },