@jesscss/less-parser 2.0.0-alpha.13 → 2.0.0-alpha.15
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 +13 -3
- package/lib/grammar/ast/positions.js +13 -3
- package/lib/grammar/ast.cjs +13 -3
- package/lib/grammar/ast.js +13 -3
- package/lib/grammar/cst/positions.cjs +13 -3
- package/lib/grammar/cst/positions.js +13 -3
- package/lib/grammar/cst.cjs +13 -3
- package/lib/grammar/cst.js +13 -3
- package/lib/grammar.d.ts.map +1 -1
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -37,8 +37,8 @@ npm install @jesscss/less-parser
|
|
|
37
37
|
|
|
38
38
|
`@jesscss/core` is an optional peer for consumers using the default AST v2
|
|
39
39
|
`parse()` result. The explicit CST and grammar subpaths remain core-free.
|
|
40
|
-
Those explicit entries expose Parseman types and grammar values
|
|
41
|
-
|
|
40
|
+
Those explicit entries expose Parseman types and grammar values; Parseman ships
|
|
41
|
+
as a bundled dependency, so it installs with the package automatically.
|
|
42
42
|
|
|
43
43
|
## Canonical AST parsing
|
|
44
44
|
|