@pnpm/installing.commands 1100.4.2 → 1100.6.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/lib/add.js +1 -0
- package/lib/install.d.ts +2 -1
- package/lib/install.js +10 -0
- package/lib/installDeps.d.ts +1 -1
- package/lib/policyHandlers.js +1 -1
- package/lib/recursive.d.ts +1 -1
- package/lib/remove.d.ts +1 -1
- package/package.json +48 -47
package/lib/add.js
CHANGED
package/lib/install.d.ts
CHANGED
|
@@ -7,13 +7,14 @@ export declare const shorthands: Record<string, string>;
|
|
|
7
7
|
export declare const commandNames: string[];
|
|
8
8
|
export declare const recursiveByDefault = true;
|
|
9
9
|
export declare function help(): string;
|
|
10
|
-
export type InstallCommandOptions = Pick<Config, 'autoInstallPeers' | 'bail' | 'bin' | 'catalogs' | 'configDependencies' | 'dedupeInjectedDeps' | 'dedupeDirectDeps' | 'dedupePeerDependents' | 'dedupePeers' | 'deployAllFiles' | 'depth' | 'dev' | 'enableGlobalVirtualStore' | 'engineStrict' | 'excludeLinksFromLockfile' | 'frozenLockfile' | 'global' | 'globalPnpmfile' | 'hoistPattern' | 'publicHoistPattern' | 'ignorePnpmfile' | 'ignoreScripts' | 'injectWorkspacePackages' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'nodeLinker' | 'patchedDependencies' | 'preferFrozenLockfile' | 'preferWorkspacePackages' | 'production' | 'registries' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveCatalogName' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'tag' | 'allowBuilds' | 'optional' | 'virtualStoreDir' | 'workspaceConcurrency' | 'workspaceDir' | 'workspacePackagePatterns' | 'extraEnv' | 'resolutionMode' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles' | 'updateConfig' | 'overrides' | 'packageExtensions' | 'agent' | 'supportedArchitectures' | 'packageConfigs'> & Pick<ConfigContext, 'allProjects' | 'cliOptions' | 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'allProjectsGraph' | 'selectedProjectsGraph'> & CreateStoreControllerOptions & Partial<Pick<Config, 'globalPkgDir'>> & {
|
|
10
|
+
export type InstallCommandOptions = Pick<Config, 'autoInstallPeers' | 'bail' | 'bin' | 'catalogs' | 'configDependencies' | 'dedupeInjectedDeps' | 'dedupeDirectDeps' | 'dedupePeerDependents' | 'dedupePeers' | 'deployAllFiles' | 'depth' | 'dev' | 'enableGlobalVirtualStore' | 'engineStrict' | 'excludeLinksFromLockfile' | 'frozenLockfile' | 'global' | 'globalPnpmfile' | 'hoistPattern' | 'publicHoistPattern' | 'ignorePnpmfile' | 'ignoreScripts' | 'injectWorkspacePackages' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'nodeLinker' | 'patchedDependencies' | 'preferFrozenLockfile' | 'preferWorkspacePackages' | 'production' | 'registries' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveCatalogName' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'tag' | 'trustLockfile' | 'allowBuilds' | 'optional' | 'virtualStoreDir' | 'workspaceConcurrency' | 'workspaceDir' | 'workspacePackagePatterns' | 'extraEnv' | 'resolutionMode' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles' | 'updateConfig' | 'overrides' | 'packageExtensions' | 'agent' | 'supportedArchitectures' | 'packageConfigs'> & Pick<ConfigContext, 'allProjects' | 'cliOptions' | 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'allProjectsGraph' | 'selectedProjectsGraph'> & CreateStoreControllerOptions & Partial<Pick<Config, 'globalPkgDir'>> & {
|
|
11
11
|
argv: {
|
|
12
12
|
cooked?: string[];
|
|
13
13
|
original: string[];
|
|
14
14
|
remain?: string[];
|
|
15
15
|
};
|
|
16
16
|
fixLockfile?: boolean;
|
|
17
|
+
updateChecksums?: boolean;
|
|
17
18
|
frozenLockfileIfExists?: boolean;
|
|
18
19
|
useBetaCli?: boolean;
|
|
19
20
|
pruneDirectDependencies?: boolean;
|
package/lib/install.js
CHANGED
|
@@ -61,6 +61,7 @@ export function rcOptionsTypes() {
|
|
|
61
61
|
'side-effects-cache',
|
|
62
62
|
'store-dir',
|
|
63
63
|
'strict-peer-dependencies',
|
|
64
|
+
'trust-lockfile',
|
|
64
65
|
'trust-policy',
|
|
65
66
|
'trust-policy-exclude',
|
|
66
67
|
'trust-policy-ignore-after',
|
|
@@ -77,6 +78,7 @@ export const cliOptionsTypes = () => ({
|
|
|
77
78
|
...rcOptionsTypes(),
|
|
78
79
|
...pick(['force'], allTypes),
|
|
79
80
|
'fix-lockfile': Boolean,
|
|
81
|
+
'update-checksums': Boolean,
|
|
80
82
|
'resolution-only': Boolean,
|
|
81
83
|
recursive: Boolean,
|
|
82
84
|
// `--no-save` lets `pnpm install` skip writing to package.json /
|
|
@@ -156,6 +158,10 @@ For options that may be used with `-r`, see "pnpm help recursive"',
|
|
|
156
158
|
description: 'Fix broken lockfile entries automatically',
|
|
157
159
|
name: '--fix-lockfile',
|
|
158
160
|
},
|
|
161
|
+
{
|
|
162
|
+
description: 'Refresh integrity checksums recorded in the lockfile from the registry',
|
|
163
|
+
name: '--update-checksums',
|
|
164
|
+
},
|
|
159
165
|
{
|
|
160
166
|
description: 'Merge lockfiles were generated on git branch',
|
|
161
167
|
name: '--merge-git-branch-lockfiles',
|
|
@@ -220,6 +226,10 @@ by any dependencies, so it is an emulation of a flat node_modules',
|
|
|
220
226
|
description: 'Ignore trust downgrades for packages published more than specified minutes ago',
|
|
221
227
|
name: '--trust-policy-ignore-after <minutes>',
|
|
222
228
|
},
|
|
229
|
+
{
|
|
230
|
+
description: 'Trust the lockfile and skip the supply-chain verification step that re-applies minimumReleaseAge / trustPolicy to each lockfile entry. Use only when the lockfile is part of the trusted base (closed-source projects, CI runs against an already-verified lockfile)',
|
|
231
|
+
name: '--trust-lockfile',
|
|
232
|
+
},
|
|
223
233
|
{
|
|
224
234
|
description: 'Clones/hardlinks or copies packages. The selected method depends from the file system',
|
|
225
235
|
name: '--package-import-method auto',
|
package/lib/installDeps.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { type UpdateMatchingFunction } from '@pnpm/installing.deps-installer';
|
|
|
4
4
|
import type { LockfileObject } from '@pnpm/lockfile.types';
|
|
5
5
|
import { type CreateStoreControllerOptions } from '@pnpm/store.connection-manager';
|
|
6
6
|
import type { IncludedDependencies, PackageVulnerabilityAudit } from '@pnpm/types';
|
|
7
|
-
export type InstallDepsOptions = Pick<Config, 'autoInstallPeers' | 'bail' | 'bin' | 'catalogs' | 'catalogMode' | 'cleanupUnusedCatalogs' | 'dedupePeerDependents' | 'dedupePeers' | 'depth' | 'dev' | 'enableGlobalVirtualStore' | 'virtualStoreOnly' | 'engineStrict' | 'excludeLinksFromLockfile' | 'global' | 'globalPnpmfile' | 'ignoreCurrentSpecifiers' | 'ignorePnpmfile' | 'ignoreScripts' | 'optimisticRepeatInstall' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'agent' | 'production' | 'preferWorkspacePackages' | 'registries' | 'runtime' | 'runtimeOnFail' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'scriptsPrependNodePath' | 'scriptShell' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'shellEmulator' | 'tag' | 'allowBuilds' | 'optional' | 'workspaceConcurrency' | 'workspaceDir' | 'workspacePackagePatterns' | 'extraEnv' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles' | 'configDependencies' | 'packageExtensions' | 'updateConfig'> & Pick<ConfigContext, 'allProjects' | 'allProjectsGraph' | 'cliOptions' | 'hooks' | 'rootProjectManifestDir' | 'rootProjectManifest' | 'selectedProjectsGraph'> & Partial<Pick<Config, 'ci'>> & CreateStoreControllerOptions & {
|
|
7
|
+
export type InstallDepsOptions = Pick<Config, 'autoInstallPeers' | 'bail' | 'bin' | 'catalogs' | 'catalogMode' | 'cleanupUnusedCatalogs' | 'dedupePeerDependents' | 'dedupePeers' | 'depth' | 'dev' | 'enableGlobalVirtualStore' | 'virtualStoreOnly' | 'engineStrict' | 'excludeLinksFromLockfile' | 'global' | 'globalPnpmfile' | 'ignoreCurrentSpecifiers' | 'ignorePnpmfile' | 'ignoreScripts' | 'optimisticRepeatInstall' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'agent' | 'production' | 'preferWorkspacePackages' | 'registries' | 'runtime' | 'runtimeOnFail' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'scriptsPrependNodePath' | 'scriptShell' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'shellEmulator' | 'tag' | 'trustLockfile' | 'allowBuilds' | 'optional' | 'workspaceConcurrency' | 'workspaceDir' | 'workspacePackagePatterns' | 'extraEnv' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles' | 'configDependencies' | 'packageExtensions' | 'updateConfig'> & Pick<ConfigContext, 'allProjects' | 'allProjectsGraph' | 'cliOptions' | 'hooks' | 'rootProjectManifestDir' | 'rootProjectManifest' | 'selectedProjectsGraph'> & Partial<Pick<Config, 'ci'>> & CreateStoreControllerOptions & {
|
|
8
8
|
argv: {
|
|
9
9
|
cooked?: string[];
|
|
10
10
|
original: string[];
|
package/lib/policyHandlers.js
CHANGED
|
@@ -127,7 +127,7 @@ function pickImmatureEntries(violations, promptRequired) {
|
|
|
127
127
|
// the discovery notice.
|
|
128
128
|
const reason = promptRequired
|
|
129
129
|
? '(approved at the prompt)'
|
|
130
|
-
: '(
|
|
130
|
+
: '(set minimumReleaseAgeStrict to true to gate these updates with a prompt)';
|
|
131
131
|
globalInfo(`Added ${sorted.length} ${sorted.length === 1 ? 'entry' : 'entries'} to minimumReleaseAgeExclude in pnpm-workspace.yaml ` +
|
|
132
132
|
`${reason}:\n ${sorted.join('\n ')}`);
|
|
133
133
|
return sorted;
|
package/lib/recursive.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { ResolutionVerifier } from '@pnpm/resolving.resolver-base';
|
|
|
6
6
|
import { type CreateStoreControllerOptions } from '@pnpm/store.connection-manager';
|
|
7
7
|
import type { StoreController } from '@pnpm/store.controller';
|
|
8
8
|
import type { IncludedDependencies, Project, ProjectManifest, ProjectsGraph } from '@pnpm/types';
|
|
9
|
-
export type RecursiveOptions = CreateStoreControllerOptions & Pick<Config, 'bail' | 'configDependencies' | 'dedupePeerDependents' | 'dedupePeers' | 'depth' | 'globalPnpmfile' | 'hoistPattern' | 'ignorePnpmfile' | 'ignoreScripts' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'agent' | 'allowBuilds' | 'registries' | 'runtime' | 'save' | 'saveCatalogName' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'sharedWorkspaceLockfile' | 'tag' | 'cleanupUnusedCatalogs' | 'packageConfigs' | 'updateConfig'> & Pick<ConfigContext, 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir'> & {
|
|
9
|
+
export type RecursiveOptions = CreateStoreControllerOptions & Pick<Config, 'bail' | 'configDependencies' | 'dedupePeerDependents' | 'dedupePeers' | 'depth' | 'globalPnpmfile' | 'hoistPattern' | 'ignorePnpmfile' | 'ignoreScripts' | 'linkWorkspacePackages' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'agent' | 'allowBuilds' | 'registries' | 'runtime' | 'save' | 'saveCatalogName' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'sharedWorkspaceLockfile' | 'tag' | 'trustLockfile' | 'cleanupUnusedCatalogs' | 'packageConfigs' | 'updateConfig'> & Pick<ConfigContext, 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir'> & {
|
|
10
10
|
rebuildHandler?: CommandHandler;
|
|
11
11
|
include?: IncludedDependencies;
|
|
12
12
|
includeDirect?: IncludedDependencies;
|
package/lib/remove.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const cliOptionsTypes: () => Record<string, unknown>;
|
|
|
6
6
|
export declare function help(): string;
|
|
7
7
|
export declare const commandNames: string[];
|
|
8
8
|
export declare const completion: CompletionFunc;
|
|
9
|
-
export declare function handler(opts: CreateStoreControllerOptions & Pick<Config, 'bail' | 'bin' | 'configDependencies' | 'dev' | 'engineStrict' | 'globalPnpmfile' | 'ignorePnpmfile' | 'linkWorkspacePackages' | 'lockfileDir' | 'optional' | 'production' | 'registries' | 'saveDev' | 'saveOptional' | 'saveProd' | 'workspaceDir' | 'workspacePackagePatterns' | 'sharedWorkspaceLockfile' | 'cleanupUnusedCatalogs'> & Pick<ConfigContext, 'allProjects' | 'allProjectsGraph' | 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'selectedProjectsGraph'> & {
|
|
9
|
+
export declare function handler(opts: CreateStoreControllerOptions & Pick<Config, 'bail' | 'bin' | 'configDependencies' | 'dev' | 'engineStrict' | 'globalPnpmfile' | 'ignorePnpmfile' | 'linkWorkspacePackages' | 'lockfileDir' | 'optional' | 'production' | 'registries' | 'saveDev' | 'saveOptional' | 'saveProd' | 'workspaceDir' | 'workspacePackagePatterns' | 'sharedWorkspaceLockfile' | 'cleanupUnusedCatalogs' | 'trustLockfile'> & Pick<ConfigContext, 'allProjects' | 'allProjectsGraph' | 'hooks' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'selectedProjectsGraph'> & {
|
|
10
10
|
recursive?: boolean;
|
|
11
11
|
pnpmfile: string[];
|
|
12
12
|
} & Partial<Pick<Config, 'global' | 'globalPkgDir'>>, params: string[]): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/installing.commands",
|
|
3
|
-
"version": "1100.
|
|
3
|
+
"version": "1100.6.0",
|
|
4
4
|
"description": "Commands for installation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -32,61 +32,61 @@
|
|
|
32
32
|
"@yarnpkg/parsers": "3.0.3",
|
|
33
33
|
"@zkochan/rimraf": "^4.0.0",
|
|
34
34
|
"@zkochan/table": "^2.0.1",
|
|
35
|
-
"chalk": "^5.6.
|
|
36
|
-
"ci-info": "^4.
|
|
35
|
+
"chalk": "^5.6.2",
|
|
36
|
+
"ci-info": "^4.4.0",
|
|
37
37
|
"enquirer": "^2.4.1",
|
|
38
38
|
"get-npm-tarball-url": "^2.1.0",
|
|
39
39
|
"is-subdir": "^2.0.0",
|
|
40
40
|
"load-json-file": "^7.0.1",
|
|
41
41
|
"normalize-path": "^3.0.0",
|
|
42
42
|
"p-filter": "^4.1.0",
|
|
43
|
-
"p-limit": "^7.
|
|
43
|
+
"p-limit": "^7.3.0",
|
|
44
44
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
45
45
|
"render-help": "^2.0.0",
|
|
46
46
|
"version-selector-type": "^3.0.0",
|
|
47
|
-
"@pnpm/building.after-install": "1101.0.
|
|
47
|
+
"@pnpm/building.after-install": "1101.0.17",
|
|
48
48
|
"@pnpm/catalogs.types": "1100.0.0",
|
|
49
|
+
"@pnpm/cli.command": "1100.0.1",
|
|
50
|
+
"@pnpm/cli.utils": "1101.0.8",
|
|
49
51
|
"@pnpm/cli.common-cli-options-help": "1100.0.1",
|
|
50
|
-
"@pnpm/
|
|
51
|
-
"@pnpm/config.pick-registry-for-package": "1100.0.5",
|
|
52
|
-
"@pnpm/config.writer": "1100.0.9",
|
|
52
|
+
"@pnpm/config.reader": "1101.4.1",
|
|
53
53
|
"@pnpm/config.matcher": "1100.0.1",
|
|
54
|
-
"@pnpm/
|
|
54
|
+
"@pnpm/config.pick-registry-for-package": "1100.0.6",
|
|
55
|
+
"@pnpm/config.writer": "1100.0.10",
|
|
55
56
|
"@pnpm/constants": "1100.0.0",
|
|
56
|
-
"@pnpm/deps.
|
|
57
|
-
"@pnpm/deps.inspection.outdated": "1100.1.
|
|
57
|
+
"@pnpm/deps.path": "1100.0.5",
|
|
58
|
+
"@pnpm/deps.inspection.outdated": "1100.1.3",
|
|
59
|
+
"@pnpm/deps.status": "1100.0.19",
|
|
58
60
|
"@pnpm/error": "1100.0.0",
|
|
59
61
|
"@pnpm/fs.graceful-fs": "1100.1.0",
|
|
60
|
-
"@pnpm/global.commands": "1100.0.20",
|
|
61
|
-
"@pnpm/hooks.pnpmfile": "1100.0.10",
|
|
62
|
-
"@pnpm/installing.context": "1100.0.12",
|
|
63
|
-
"@pnpm/installing.dedupe.check": "1100.0.7",
|
|
64
62
|
"@pnpm/fs.read-modules-dir": "1100.0.1",
|
|
65
|
-
"@pnpm/
|
|
66
|
-
"@pnpm/
|
|
67
|
-
"@pnpm/installing.
|
|
68
|
-
"@pnpm/
|
|
63
|
+
"@pnpm/global.commands": "1100.0.22",
|
|
64
|
+
"@pnpm/hooks.pnpmfile": "1100.0.11",
|
|
65
|
+
"@pnpm/installing.context": "1100.0.13",
|
|
66
|
+
"@pnpm/installing.deps-installer": "1101.5.0",
|
|
67
|
+
"@pnpm/installing.dedupe.check": "1100.0.8",
|
|
68
|
+
"@pnpm/lockfile.types": "1100.0.8",
|
|
69
|
+
"@pnpm/pkg-manifest.utils": "1100.2.1",
|
|
70
|
+
"@pnpm/pkg-manifest.reader": "1100.0.5",
|
|
71
|
+
"@pnpm/resolving.npm-resolver": "1101.3.3",
|
|
69
72
|
"@pnpm/resolving.parse-wanted-dependency": "1100.0.1",
|
|
70
|
-
"@pnpm/resolving.
|
|
71
|
-
"@pnpm/
|
|
72
|
-
"@pnpm/
|
|
73
|
-
"@pnpm/
|
|
74
|
-
"@pnpm/
|
|
75
|
-
"@pnpm/
|
|
76
|
-
"@pnpm/workspace.project-manifest-writer": "1100.0.
|
|
77
|
-
"@pnpm/
|
|
78
|
-
"@pnpm/workspace.
|
|
79
|
-
"@pnpm/workspace.
|
|
80
|
-
"@pnpm/workspace.
|
|
81
|
-
"@pnpm/workspace.projects-
|
|
82
|
-
"@pnpm/workspace.
|
|
83
|
-
"@pnpm/workspace.root-finder": "1100.0.1"
|
|
84
|
-
"@pnpm/workspace.workspace-manifest-writer": "1100.0.9",
|
|
85
|
-
"@pnpm/installing.env-installer": "1101.1.1",
|
|
86
|
-
"@pnpm/workspace.projects-filter": "1100.0.14"
|
|
73
|
+
"@pnpm/resolving.resolver-base": "1100.3.1",
|
|
74
|
+
"@pnpm/store.controller": "1101.0.9",
|
|
75
|
+
"@pnpm/installing.env-installer": "1101.1.3",
|
|
76
|
+
"@pnpm/store.connection-manager": "1100.2.4",
|
|
77
|
+
"@pnpm/types": "1101.2.0",
|
|
78
|
+
"@pnpm/workspace.projects-filter": "1100.0.16",
|
|
79
|
+
"@pnpm/workspace.project-manifest-writer": "1100.0.5",
|
|
80
|
+
"@pnpm/workspace.projects-graph": "1100.0.13",
|
|
81
|
+
"@pnpm/workspace.projects-reader": "1101.0.8",
|
|
82
|
+
"@pnpm/workspace.state": "1100.0.16",
|
|
83
|
+
"@pnpm/workspace.project-manifest-reader": "1100.0.9",
|
|
84
|
+
"@pnpm/workspace.projects-sorter": "1100.0.4",
|
|
85
|
+
"@pnpm/workspace.workspace-manifest-writer": "1100.0.10",
|
|
86
|
+
"@pnpm/workspace.root-finder": "1100.0.1"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@pnpm/logger": "
|
|
89
|
+
"@pnpm/logger": "^1001.0.1"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@jest/globals": "30.3.0",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@types/yarnpkg__lockfile": "^1.1.9",
|
|
98
98
|
"@types/zkochan__table": "npm:@types/table@6.0.0",
|
|
99
99
|
"delay": "^7.0.0",
|
|
100
|
-
"jest-diff": "^30.
|
|
100
|
+
"jest-diff": "^30.4.1",
|
|
101
101
|
"path-name": "^1.0.0",
|
|
102
102
|
"proxyquire": "^2.1.3",
|
|
103
103
|
"read-yaml-file": "^3.0.0",
|
|
@@ -106,18 +106,19 @@
|
|
|
106
106
|
"write-json-file": "^7.0.0",
|
|
107
107
|
"write-package": "7.2.0",
|
|
108
108
|
"write-yaml-file": "^6.0.0",
|
|
109
|
-
"@pnpm/
|
|
110
|
-
"@pnpm/
|
|
111
|
-
"@pnpm/installing.
|
|
109
|
+
"@pnpm/assert-project": "1100.0.11",
|
|
110
|
+
"@pnpm/installing.commands": "1100.6.0",
|
|
111
|
+
"@pnpm/installing.modules-yaml": "1100.0.6",
|
|
112
|
+
"@pnpm/logger": "1100.0.0",
|
|
113
|
+
"@pnpm/prepare": "1100.0.11",
|
|
112
114
|
"@pnpm/store.index": "1100.1.0",
|
|
113
|
-
"@pnpm/prepare": "1100.0.10",
|
|
114
115
|
"@pnpm/test-fixtures": "1100.0.0",
|
|
115
|
-
"@pnpm/testing.command-defaults": "1100.0.1",
|
|
116
|
-
"@pnpm/testing.mock-agent": "1100.0.6",
|
|
117
|
-
"@pnpm/worker": "1100.1.7",
|
|
118
116
|
"@pnpm/test-ipc-server": "1100.0.0",
|
|
119
|
-
"@pnpm/
|
|
120
|
-
"@pnpm/
|
|
117
|
+
"@pnpm/testing.mock-agent": "1100.0.7",
|
|
118
|
+
"@pnpm/testing.registry-mock": "1100.0.1",
|
|
119
|
+
"@pnpm/testing.command-defaults": "1100.0.1",
|
|
120
|
+
"@pnpm/worker": "1100.1.8",
|
|
121
|
+
"@pnpm/workspace.projects-filter": "1100.0.16"
|
|
121
122
|
},
|
|
122
123
|
"engines": {
|
|
123
124
|
"node": ">=22.13"
|