@jesscss/scss-parser 2.0.0-alpha.12 → 2.0.0-alpha.14
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/README.md +2 -2
- package/lib/grammar/ast/positions.cjs +12571 -6740
- package/lib/grammar/ast/positions.js +12733 -6902
- package/lib/grammar/ast.cjs +13109 -63590
- package/lib/grammar/ast.js +13108 -63589
- package/lib/grammar/cst/positions.cjs +12452 -6621
- package/lib/grammar/cst/positions.js +12452 -6621
- package/lib/grammar/cst.cjs +12057 -6197
- package/lib/grammar/cst.js +12053 -6193
- package/lib/grammar-helpers.d.ts +234 -0
- package/lib/grammar.d.ts +4 -4
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -46,8 +46,8 @@ npm install @jesscss/scss-parser
|
|
|
46
46
|
|
|
47
47
|
`@jesscss/core` is an **optional** peer dependency — needed for the default
|
|
48
48
|
AST v2 `parse()` entry, not for `./cst` or `./grammar`.
|
|
49
|
-
Those explicit entries expose Parseman types and grammar values
|
|
50
|
-
|
|
49
|
+
Those explicit entries expose Parseman types and grammar values; Parseman ships
|
|
50
|
+
as a bundled dependency, so it installs with the package automatically.
|
|
51
51
|
|
|
52
52
|
## Canonical AST parsing
|
|
53
53
|
|