@jesscss/less-parser 2.0.0-alpha.13 → 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +7 -8
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, so consumers
41
- of them must also provide the package's `parseman` peer.
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
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "2.0.0-alpha.13",
7
+ "version": "2.0.0-alpha.14",
8
8
  "engines": {
9
9
  "node": "^20.19.0 || >=22.12.0"
10
10
  },
@@ -64,11 +64,11 @@
64
64
  ],
65
65
  "dependencies": {
66
66
  "known-css-properties": "~0.37.0",
67
- "@jesscss/css-parser": "2.0.0-alpha.13"
67
+ "parseman": "^0.50.5",
68
+ "@jesscss/css-parser": "2.0.0-alpha.14"
68
69
  },
69
70
  "peerDependencies": {
70
- "parseman": "^0.50.5",
71
- "@jesscss/core": "2.0.0-alpha.13"
71
+ "@jesscss/core": "2.0.0-alpha.14"
72
72
  },
73
73
  "peerDependenciesMeta": {
74
74
  "@jesscss/core": {
@@ -78,12 +78,11 @@
78
78
  "devDependencies": {
79
79
  "@types/node": "^18.19.31",
80
80
  "less": "^4.6.3",
81
- "parseman": "^0.50.5",
82
81
  "postcss-less": "~6.0.0",
83
82
  "tsx": "~4.21.0",
84
- "@jesscss/core": "2.0.0-alpha.13",
85
- "@jesscss/parser-shared": "2.0.0-alpha.13",
86
- "@jesscss/shared": "2.0.0-alpha.1"
83
+ "@jesscss/core": "2.0.0-alpha.14",
84
+ "@jesscss/shared": "2.0.0-alpha.1",
85
+ "@jesscss/parser-shared": "2.0.0-alpha.14"
87
86
  },
88
87
  "author": "Matthew Dean <matthew-dean@users.noreply.github.com>",
89
88
  "license": "MIT",