@pnpm/workspace.workspace-manifest-reader 1100.0.9 → 1100.1.0
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/CHANGELOG.md +305 -0
- package/lib/index.js +2 -0
- package/lib/versioning.d.ts +7 -0
- package/lib/versioning.js +73 -0
- package/package.json +5 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# @pnpm/workspace.read-manifest
|
|
2
|
+
|
|
3
|
+
## 1100.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added `versioning.epics` to `pnpm-workspace.yaml`. An epic ties a group of member packages to a lead package, constraining every member's major version to a band derived from the lead's major: while the lead is on major `M`, members live in `M*100 … M*100+99`. Members move independently inside the band (patch, minor, and a `major` intent that stays in-band); a bump that would carry a member past the band ceiling is rejected until the lead advances its own major. When a release plan takes the lead to a new stable major, every member re-bases to the band floor in the same plan. Membership is matched with pnpm's package selectors — name globs, `./`-prefixed directory globs, and `!`-prefixed negations.
|
|
8
|
+
|
|
9
|
+
- Added native workspace release management [#12952](https://github.com/pnpm/pnpm/issues/12952): the new `pnpm change` command records change intents as changesets-compatible `.changeset/*.md` files (`pnpm change status` shows the pending release plan), and the bare `pnpm version -r` consumes them — bumping versions across the workspace with dependent propagation through `workspace:` ranges, fixed groups, a `maxBump` cap, `--filter` narrowing, and `--dry-run` — writing changelogs, and recording consumed intents in a committed ledger that keeps cherry-picks and merge-backs between release branches safe. Packages can be moved onto per-package release lanes with the new `pnpm lane <name> --filter <pkg>` command and back with `pnpm lane main --filter <pkg>` (`pnpm lane` shows the membership), releasing `X.Y.Z-lane.N` prereleases from the same runs that release stable versions of the packages on the main lane. Configuration lives under the new `versioning` key of `pnpm-workspace.yaml` (`fixed`, `ignore`, `maxBump`, `lanes`, `changelog`). When two workspace projects publish the same name, intent files, `versioning.lanes`, and `versioning.fixed`/`ignore` may reference a project by its workspace-relative directory path (e.g. `"./pnpm/npm/pnpm"`) — the one additive extension to the changesets format, applied automatically by `pnpm change`.
|
|
10
|
+
|
|
11
|
+
Release changelogs default to `registry` storage (`versioning.changelog.storage`): no `CHANGELOG.md` is committed. Each release's section is composed at publish time and packed into the published tarball on top of the previously published version's changelog, and the consumed change intents are garbage-collected by a later `pnpm version -r` only once the registry confirms the version is published with its section. Set `versioning.changelog.storage: repository` to keep committed `CHANGELOG.md` files instead.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies:
|
|
16
|
+
- @pnpm/types@1101.4.0
|
|
17
|
+
|
|
18
|
+
## 1100.0.9
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [852d537]
|
|
23
|
+
- @pnpm/error@1100.0.1
|
|
24
|
+
|
|
25
|
+
## 1100.0.8
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [681b593]
|
|
30
|
+
- @pnpm/types@1101.3.2
|
|
31
|
+
|
|
32
|
+
## 1100.0.7
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [bf1b731]
|
|
37
|
+
- @pnpm/types@1101.3.1
|
|
38
|
+
|
|
39
|
+
## 1100.0.6
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [a017bf3]
|
|
44
|
+
- @pnpm/types@1101.3.0
|
|
45
|
+
|
|
46
|
+
## 1100.0.5
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- Updated dependencies [35d2355]
|
|
51
|
+
- @pnpm/types@1101.2.0
|
|
52
|
+
|
|
53
|
+
## 1100.0.4
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [64afc92]
|
|
58
|
+
- @pnpm/types@1101.1.1
|
|
59
|
+
|
|
60
|
+
## 1100.0.3
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- Updated dependencies [b61e268]
|
|
65
|
+
- @pnpm/types@1101.1.0
|
|
66
|
+
|
|
67
|
+
## 1100.0.2
|
|
68
|
+
|
|
69
|
+
### Patch Changes
|
|
70
|
+
|
|
71
|
+
- f543b77: Reject `null` named catalogs in workspace manifests with `InvalidWorkspaceManifestError` instead of crashing with a raw `TypeError`.
|
|
72
|
+
|
|
73
|
+
## 1100.0.1
|
|
74
|
+
|
|
75
|
+
### Patch Changes
|
|
76
|
+
|
|
77
|
+
- Updated dependencies [ff28085]
|
|
78
|
+
- @pnpm/types@1101.0.0
|
|
79
|
+
|
|
80
|
+
## 1001.0.0
|
|
81
|
+
|
|
82
|
+
### Major Changes
|
|
83
|
+
|
|
84
|
+
- 491a84f: This package is now pure ESM.
|
|
85
|
+
- 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
|
|
86
|
+
|
|
87
|
+
### Minor Changes
|
|
88
|
+
|
|
89
|
+
- 075aa99: Add support for a global YAML config file named `config.yaml`.
|
|
90
|
+
|
|
91
|
+
Now configurations are divided into 2 categories:
|
|
92
|
+
|
|
93
|
+
- Registry and auth settings which can be stored in INI files such as global `rc` and local `.npmrc`.
|
|
94
|
+
- pnpm-specific settings which can only be loaded from YAML files such as global `config.yaml` and local `pnpm-workspace.yaml`.
|
|
95
|
+
|
|
96
|
+
- 2b14c74: The `validateWorkspaceManifest` function is now exported and can be used to validate whether a workspace manifest object's schema is correct.
|
|
97
|
+
|
|
98
|
+
### Patch Changes
|
|
99
|
+
|
|
100
|
+
- Updated dependencies [c55c614]
|
|
101
|
+
- Updated dependencies [76718b3]
|
|
102
|
+
- Updated dependencies [a8f016c]
|
|
103
|
+
- Updated dependencies [cc1b8e3]
|
|
104
|
+
- Updated dependencies [491a84f]
|
|
105
|
+
- Updated dependencies [075aa99]
|
|
106
|
+
- Updated dependencies [7d2fd48]
|
|
107
|
+
- Updated dependencies [efb48dc]
|
|
108
|
+
- Updated dependencies [50fbeca]
|
|
109
|
+
- Updated dependencies [cb367b9]
|
|
110
|
+
- Updated dependencies [7b1c189]
|
|
111
|
+
- Updated dependencies [8ffb1a7]
|
|
112
|
+
- Updated dependencies [05fb1ae]
|
|
113
|
+
- Updated dependencies [71de2b3]
|
|
114
|
+
- Updated dependencies [10bc391]
|
|
115
|
+
- Updated dependencies [831f574]
|
|
116
|
+
- Updated dependencies [2df8b71]
|
|
117
|
+
- Updated dependencies [15549a9]
|
|
118
|
+
- Updated dependencies [cc7c0d2]
|
|
119
|
+
- Updated dependencies [efb48dc]
|
|
120
|
+
- @pnpm/constants@1002.0.0
|
|
121
|
+
- @pnpm/types@1001.0.0
|
|
122
|
+
- @pnpm/error@1001.0.0
|
|
123
|
+
|
|
124
|
+
## 1000.2.5
|
|
125
|
+
|
|
126
|
+
### Patch Changes
|
|
127
|
+
|
|
128
|
+
- Updated dependencies [7c1382f]
|
|
129
|
+
- Updated dependencies [dee39ec]
|
|
130
|
+
- @pnpm/types@1000.9.0
|
|
131
|
+
|
|
132
|
+
## 1000.2.4
|
|
133
|
+
|
|
134
|
+
### Patch Changes
|
|
135
|
+
|
|
136
|
+
- Updated dependencies [6365bc4]
|
|
137
|
+
- @pnpm/constants@1001.3.1
|
|
138
|
+
- @pnpm/error@1000.0.5
|
|
139
|
+
|
|
140
|
+
## 1000.2.3
|
|
141
|
+
|
|
142
|
+
### Patch Changes
|
|
143
|
+
|
|
144
|
+
- Updated dependencies [e792927]
|
|
145
|
+
- @pnpm/types@1000.8.0
|
|
146
|
+
|
|
147
|
+
## 1000.2.2
|
|
148
|
+
|
|
149
|
+
### Patch Changes
|
|
150
|
+
|
|
151
|
+
- Updated dependencies [d1edf73]
|
|
152
|
+
- Updated dependencies [86b33e9]
|
|
153
|
+
- @pnpm/constants@1001.3.0
|
|
154
|
+
- @pnpm/error@1000.0.4
|
|
155
|
+
|
|
156
|
+
## 1000.2.1
|
|
157
|
+
|
|
158
|
+
### Patch Changes
|
|
159
|
+
|
|
160
|
+
- Updated dependencies [1a07b8f]
|
|
161
|
+
- Updated dependencies [1a07b8f]
|
|
162
|
+
- @pnpm/types@1000.7.0
|
|
163
|
+
- @pnpm/constants@1001.2.0
|
|
164
|
+
- @pnpm/error@1000.0.3
|
|
165
|
+
|
|
166
|
+
## 1000.2.0
|
|
167
|
+
|
|
168
|
+
### Minor Changes
|
|
169
|
+
|
|
170
|
+
- c8341cc: Added two new CLI options (`--save-catalog` and `--save-catalog-name=<name>`) to `pnpm add` to save new dependencies as catalog entries. `catalog:` or `catalog:<name>` will be added to `package.json` and the package specifier will be added to the `catalogs` or `catalog[<name>]` object in `pnpm-workspace.yaml` [#9425](https://github.com/pnpm/pnpm/issues/9425).
|
|
171
|
+
|
|
172
|
+
## 1000.1.5
|
|
173
|
+
|
|
174
|
+
### Patch Changes
|
|
175
|
+
|
|
176
|
+
- Updated dependencies [5ec7255]
|
|
177
|
+
- @pnpm/types@1000.6.0
|
|
178
|
+
|
|
179
|
+
## 1000.1.4
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- Updated dependencies [5b73df1]
|
|
184
|
+
- @pnpm/types@1000.5.0
|
|
185
|
+
|
|
186
|
+
## 1000.1.3
|
|
187
|
+
|
|
188
|
+
### Patch Changes
|
|
189
|
+
|
|
190
|
+
- Updated dependencies [750ae7d]
|
|
191
|
+
- @pnpm/types@1000.4.0
|
|
192
|
+
|
|
193
|
+
## 1000.1.2
|
|
194
|
+
|
|
195
|
+
### Patch Changes
|
|
196
|
+
|
|
197
|
+
- Updated dependencies [5f7be64]
|
|
198
|
+
- Updated dependencies [5f7be64]
|
|
199
|
+
- @pnpm/types@1000.3.0
|
|
200
|
+
|
|
201
|
+
## 1000.1.1
|
|
202
|
+
|
|
203
|
+
### Patch Changes
|
|
204
|
+
|
|
205
|
+
- Updated dependencies [a5e4965]
|
|
206
|
+
- @pnpm/types@1000.2.1
|
|
207
|
+
|
|
208
|
+
## 1000.1.0
|
|
209
|
+
|
|
210
|
+
### Minor Changes
|
|
211
|
+
|
|
212
|
+
- 8fcc221: Extend WorkspaceManifest with PnpmSettings.
|
|
213
|
+
- 8fcc221: The `packages` field in `pnpm-workspace.yaml` became optional.
|
|
214
|
+
|
|
215
|
+
### Patch Changes
|
|
216
|
+
|
|
217
|
+
- Updated dependencies [8fcc221]
|
|
218
|
+
- @pnpm/types@1000.2.0
|
|
219
|
+
|
|
220
|
+
## 1000.0.2
|
|
221
|
+
|
|
222
|
+
### Patch Changes
|
|
223
|
+
|
|
224
|
+
- Updated dependencies [9a44e6c]
|
|
225
|
+
- @pnpm/constants@1001.1.0
|
|
226
|
+
- @pnpm/error@1000.0.2
|
|
227
|
+
|
|
228
|
+
## 1000.0.1
|
|
229
|
+
|
|
230
|
+
### Patch Changes
|
|
231
|
+
|
|
232
|
+
- Updated dependencies [d2e83b0]
|
|
233
|
+
- Updated dependencies [a76da0c]
|
|
234
|
+
- @pnpm/constants@1001.0.0
|
|
235
|
+
- @pnpm/error@1000.0.1
|
|
236
|
+
|
|
237
|
+
## 2.2.2
|
|
238
|
+
|
|
239
|
+
### Patch Changes
|
|
240
|
+
|
|
241
|
+
- Updated dependencies [19d5b51]
|
|
242
|
+
- Updated dependencies [8108680]
|
|
243
|
+
- Updated dependencies [c4f5231]
|
|
244
|
+
- @pnpm/constants@10.0.0
|
|
245
|
+
- @pnpm/error@6.0.3
|
|
246
|
+
|
|
247
|
+
## 2.2.1
|
|
248
|
+
|
|
249
|
+
### Patch Changes
|
|
250
|
+
|
|
251
|
+
- Updated dependencies [83681da]
|
|
252
|
+
- @pnpm/constants@9.0.0
|
|
253
|
+
- @pnpm/error@6.0.2
|
|
254
|
+
|
|
255
|
+
## 2.2.0
|
|
256
|
+
|
|
257
|
+
### Minor Changes
|
|
258
|
+
|
|
259
|
+
- 9c63679: The `readWorkspaceManifest` function now parses and validates [pnpm catalogs](https://github.com/pnpm/rfcs/pull/1) configs if present.
|
|
260
|
+
|
|
261
|
+
## 2.1.0
|
|
262
|
+
|
|
263
|
+
### Minor Changes
|
|
264
|
+
|
|
265
|
+
- 5d1ed94: The type definition for the `packages` field of the `WorkspaceManifest` is now non-null. The `readWorkspaceManifest` function expects this field to be present and throws an error otherwise.
|
|
266
|
+
|
|
267
|
+
## 2.0.1
|
|
268
|
+
|
|
269
|
+
### Patch Changes
|
|
270
|
+
|
|
271
|
+
- Updated dependencies [a7aef51]
|
|
272
|
+
- @pnpm/error@6.0.1
|
|
273
|
+
|
|
274
|
+
## 2.0.0
|
|
275
|
+
|
|
276
|
+
### Major Changes
|
|
277
|
+
|
|
278
|
+
- 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
|
|
279
|
+
|
|
280
|
+
### Patch Changes
|
|
281
|
+
|
|
282
|
+
- Updated dependencies [3ded840]
|
|
283
|
+
- Updated dependencies [c692f80]
|
|
284
|
+
- Updated dependencies [43cdd87]
|
|
285
|
+
- Updated dependencies [d381a60]
|
|
286
|
+
- @pnpm/error@6.0.0
|
|
287
|
+
- @pnpm/constants@8.0.0
|
|
288
|
+
|
|
289
|
+
## 1.0.2
|
|
290
|
+
|
|
291
|
+
### Patch Changes
|
|
292
|
+
|
|
293
|
+
- e8926e920: Minor refactors to improve the type safety of the workspace manifest validation logic in the `readWorkspaceManifest` function.
|
|
294
|
+
|
|
295
|
+
## 1.0.1
|
|
296
|
+
|
|
297
|
+
### Patch Changes
|
|
298
|
+
|
|
299
|
+
- e2a0c7272: Don't fail on an empty `pnpm-workspace.yaml` file [#7307](https://github.com/pnpm/pnpm/issues/7307).
|
|
300
|
+
|
|
301
|
+
## 1.0.0
|
|
302
|
+
|
|
303
|
+
### Major Changes
|
|
304
|
+
|
|
305
|
+
- 3f7e65e10: Initial release.
|
package/lib/index.js
CHANGED
|
@@ -4,6 +4,7 @@ import { WORKSPACE_MANIFEST_FILENAME } from '@pnpm/constants';
|
|
|
4
4
|
import { readYamlFile } from 'read-yaml-file';
|
|
5
5
|
import { assertValidWorkspaceManifestCatalog, assertValidWorkspaceManifestCatalogs, } from './catalogs.js';
|
|
6
6
|
import { InvalidWorkspaceManifestError } from './errors/InvalidWorkspaceManifestError.js';
|
|
7
|
+
import { assertValidWorkspaceManifestVersioning } from './versioning.js';
|
|
7
8
|
export async function readWorkspaceManifest(dir, cfgFileName = WORKSPACE_MANIFEST_FILENAME) {
|
|
8
9
|
const manifest = await readManifestRaw(dir, cfgFileName);
|
|
9
10
|
validateWorkspaceManifest(manifest);
|
|
@@ -40,6 +41,7 @@ export function validateWorkspaceManifest(manifest) {
|
|
|
40
41
|
assertValidWorkspaceManifestPackages(manifest);
|
|
41
42
|
assertValidWorkspaceManifestCatalog(manifest);
|
|
42
43
|
assertValidWorkspaceManifestCatalogs(manifest);
|
|
44
|
+
assertValidWorkspaceManifestVersioning(manifest);
|
|
43
45
|
checkWorkspaceManifestAssignability(manifest);
|
|
44
46
|
}
|
|
45
47
|
function assertValidWorkspaceManifestPackages(manifest) {
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { InvalidWorkspaceManifestError } from './errors/InvalidWorkspaceManifestError.js';
|
|
2
|
+
const BUMP_TYPES = ['patch', 'minor', 'major'];
|
|
3
|
+
const CHANGELOG_STORAGE_MODES = ['registry', 'repository'];
|
|
4
|
+
export function assertValidWorkspaceManifestVersioning(manifest) {
|
|
5
|
+
if (manifest.versioning == null) {
|
|
6
|
+
return;
|
|
7
|
+
}
|
|
8
|
+
const versioning = assertPlainObject(manifest.versioning, 'versioning');
|
|
9
|
+
if (versioning.fixed != null) {
|
|
10
|
+
if (!Array.isArray(versioning.fixed)) {
|
|
11
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.fixed to be an array of arrays, but found - ${typeof versioning.fixed}`);
|
|
12
|
+
}
|
|
13
|
+
for (const group of versioning.fixed) {
|
|
14
|
+
if (!Array.isArray(group) || group.some((name) => typeof name !== 'string' || name === '')) {
|
|
15
|
+
throw new InvalidWorkspaceManifestError('Expected every versioning.fixed group to be an array of package names');
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
if (versioning.epics != null) {
|
|
20
|
+
if (!Array.isArray(versioning.epics)) {
|
|
21
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.epics to be an array, but found - ${typeof versioning.epics}`);
|
|
22
|
+
}
|
|
23
|
+
for (const epic of versioning.epics) {
|
|
24
|
+
const entry = assertPlainObject(epic, 'versioning.epics entry');
|
|
25
|
+
if (typeof entry.lead !== 'string' || entry.lead === '') {
|
|
26
|
+
throw new InvalidWorkspaceManifestError('Expected every versioning.epics entry to have a non-empty "lead" package reference');
|
|
27
|
+
}
|
|
28
|
+
if (!Array.isArray(entry.packages) || entry.packages.length === 0 || entry.packages.some((selector) => typeof selector !== 'string' || selector === '')) {
|
|
29
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.epics entry for "${entry.lead}" to have a non-empty "packages" array of selector strings`);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (versioning.ignore != null) {
|
|
34
|
+
if (!Array.isArray(versioning.ignore) || versioning.ignore.some((name) => typeof name !== 'string' || name === '')) {
|
|
35
|
+
throw new InvalidWorkspaceManifestError('Expected versioning.ignore to be an array of package names');
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
if (versioning.maxBump != null) {
|
|
39
|
+
if (!BUMP_TYPES.includes(versioning.maxBump)) {
|
|
40
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.maxBump to be one of ${BUMP_TYPES.join(', ')}, but found - ${String(versioning.maxBump)}`);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
if (versioning.lanes != null) {
|
|
44
|
+
const lanes = assertPlainObject(versioning.lanes, 'versioning.lanes');
|
|
45
|
+
for (const [pkgName, lane] of Object.entries(lanes)) {
|
|
46
|
+
if (typeof lane !== 'string' || lane === '') {
|
|
47
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.lanes entry for ${pkgName} to be a non-empty lane name`);
|
|
48
|
+
}
|
|
49
|
+
if (lane.toLowerCase() === 'main') {
|
|
50
|
+
throw new InvalidWorkspaceManifestError(`Invalid versioning.lanes entry for ${pkgName}: "main" is the reserved default lane. Remove the entry instead.`);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
if (versioning.changelog != null) {
|
|
55
|
+
const changelog = assertPlainObject(versioning.changelog, 'versioning.changelog');
|
|
56
|
+
if (changelog.format != null && typeof changelog.format !== 'string') {
|
|
57
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.changelog.format to be a string, but found - ${typeof changelog.format}`);
|
|
58
|
+
}
|
|
59
|
+
if (changelog.storage != null && !CHANGELOG_STORAGE_MODES.includes(changelog.storage)) {
|
|
60
|
+
throw new InvalidWorkspaceManifestError(`Expected versioning.changelog.storage to be one of ${CHANGELOG_STORAGE_MODES.join(', ')}, but found - ${String(changelog.storage)}`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
function assertPlainObject(value, fieldName) {
|
|
65
|
+
if (Array.isArray(value)) {
|
|
66
|
+
throw new InvalidWorkspaceManifestError(`Expected ${fieldName} field to be an object, but found - array`);
|
|
67
|
+
}
|
|
68
|
+
if (typeof value !== 'object' || value === null) {
|
|
69
|
+
throw new InvalidWorkspaceManifestError(`Expected ${fieldName} field to be an object, but found - ${value === null ? 'null' : typeof value}`);
|
|
70
|
+
}
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=versioning.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/workspace.workspace-manifest-reader",
|
|
3
|
-
"version": "1100.0
|
|
3
|
+
"version": "1100.1.0",
|
|
4
4
|
"description": "Reads a workspace manifest file",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"!*.map"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"
|
|
30
|
+
"@pnpm/constants": "1100.0.0",
|
|
31
31
|
"@pnpm/error": "1100.0.1",
|
|
32
|
-
"@pnpm/types": "1101.
|
|
33
|
-
"
|
|
32
|
+
"@pnpm/types": "1101.4.0",
|
|
33
|
+
"read-yaml-file": "^3.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@jest/globals": "30.4.1",
|
|
37
|
-
"@pnpm/workspace.workspace-manifest-reader": "1100.0
|
|
37
|
+
"@pnpm/workspace.workspace-manifest-reader": "1100.1.0"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=22.13"
|