@pnpm/resolving.resolver-base 1100.5.0 → 1100.5.1
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/lib/index.d.ts +8 -0
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -236,6 +236,14 @@ export interface ResolveOptions {
|
|
|
236
236
|
preferWorkspacePackages?: boolean;
|
|
237
237
|
workspacePackages?: WorkspacePackages;
|
|
238
238
|
update?: false | 'compatible' | 'latest';
|
|
239
|
+
/**
|
|
240
|
+
* True only when this specific package matches the user's update target
|
|
241
|
+
* (e.g. `pnpm up <name>`). Unlike `update`, this is false for unrelated
|
|
242
|
+
* packages that get re-resolved as a side effect of an update, so it can
|
|
243
|
+
* be used to bypass preferred-version propagation without forcing
|
|
244
|
+
* unrelated transitives to jump to their latest versions.
|
|
245
|
+
*/
|
|
246
|
+
updateRequested?: boolean;
|
|
239
247
|
updateChecksums?: boolean;
|
|
240
248
|
injectWorkspacePackages?: boolean;
|
|
241
249
|
calcSpecifier?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/resolving.resolver-base",
|
|
3
|
-
"version": "1100.5.
|
|
3
|
+
"version": "1100.5.1",
|
|
4
4
|
"description": "Types for pnpm-compatible resolvers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jest/globals": "30.4.1",
|
|
35
|
-
"@pnpm/resolving.resolver-base": "1100.5.
|
|
35
|
+
"@pnpm/resolving.resolver-base": "1100.5.1"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=22.13"
|