@pnpm/plugin-commands-installation 14.0.9 → 14.0.11
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.d.ts +13 -13
- package/lib/dedupe.d.ts +4 -4
- package/lib/fetch.d.ts +6 -6
- package/lib/install.d.ts +12 -12
- package/lib/install.js.map +1 -1
- package/lib/link.d.ts +5 -5
- package/lib/prune.d.ts +5 -5
- package/lib/remove.d.ts +4 -4
- package/lib/update/index.d.ts +15 -15
- package/package.json +18 -18
package/lib/add.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type InstallCommandOptions } from './install';
|
|
5
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
5
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
6
6
|
access: (string | null)[];
|
|
7
7
|
'allow-same-version': BooleanConstructor;
|
|
8
8
|
'always-auth': BooleanConstructor;
|
|
@@ -11,7 +11,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
11
11
|
'auth-type': string[];
|
|
12
12
|
'bin-links': BooleanConstructor;
|
|
13
13
|
browser: (StringConstructor | null)[];
|
|
14
|
-
ca: (
|
|
14
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
15
15
|
cafile: import("path").PlatformPath;
|
|
16
16
|
cache: import("path").PlatformPath;
|
|
17
17
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -20,7 +20,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
20
20
|
'cache-max': NumberConstructor;
|
|
21
21
|
'cache-min': NumberConstructor;
|
|
22
22
|
cert: (StringConstructor | null)[];
|
|
23
|
-
cidr: (
|
|
23
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
24
24
|
color: (string | BooleanConstructor)[];
|
|
25
25
|
depth: NumberConstructor;
|
|
26
26
|
description: BooleanConstructor;
|
|
@@ -67,7 +67,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
67
67
|
'metrics-registry': (StringConstructor | null)[];
|
|
68
68
|
'node-options': (StringConstructor | null)[];
|
|
69
69
|
'node-version': ((() => void) | null)[];
|
|
70
|
-
'no-proxy': (
|
|
70
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
71
71
|
offline: BooleanConstructor;
|
|
72
72
|
'onload-script': (StringConstructor | null)[];
|
|
73
73
|
only: (string | null)[];
|
|
@@ -122,18 +122,14 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
122
122
|
versions: BooleanConstructor;
|
|
123
123
|
viewer: StringConstructor;
|
|
124
124
|
_exit: BooleanConstructor;
|
|
125
|
-
}, "
|
|
125
|
+
}, "optional" | "force" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "offline" | "only" | "unsafe-perm" | "save-prod" | "save-dev" | "save-optional" | "save-exact" | "save-prefix">;
|
|
126
126
|
export declare function cliOptionsTypes(): {
|
|
127
127
|
recursive: BooleanConstructor;
|
|
128
128
|
save: BooleanConstructor;
|
|
129
129
|
workspace: BooleanConstructor;
|
|
130
|
-
global: any;
|
|
131
|
-
production: any;
|
|
132
|
-
force: any;
|
|
133
|
-
offline: any;
|
|
134
|
-
registry: any;
|
|
135
130
|
optional: any;
|
|
136
|
-
|
|
131
|
+
force: any;
|
|
132
|
+
global: any;
|
|
137
133
|
'engine-strict': any;
|
|
138
134
|
'fetch-retries': any;
|
|
139
135
|
'fetch-retry-factor': any;
|
|
@@ -142,13 +138,17 @@ export declare function cliOptionsTypes(): {
|
|
|
142
138
|
'https-proxy': any;
|
|
143
139
|
'ignore-scripts': any;
|
|
144
140
|
'prefer-offline': any;
|
|
141
|
+
production: any;
|
|
145
142
|
proxy: any;
|
|
146
|
-
|
|
147
|
-
|
|
143
|
+
registry: any;
|
|
144
|
+
offline: any;
|
|
145
|
+
only: any;
|
|
148
146
|
'unsafe-perm': any;
|
|
149
147
|
'save-prod': any;
|
|
150
148
|
'save-dev': any;
|
|
151
149
|
'save-optional': any;
|
|
150
|
+
'save-exact': any;
|
|
151
|
+
'save-prefix': any;
|
|
152
152
|
};
|
|
153
153
|
export declare const commandNames: string[];
|
|
154
154
|
export declare function help(): string;
|
package/lib/dedupe.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type InstallCommandOptions } from './install';
|
|
5
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
5
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
6
6
|
access: (string | null)[];
|
|
7
7
|
'allow-same-version': BooleanConstructor;
|
|
8
8
|
'always-auth': BooleanConstructor;
|
|
@@ -11,7 +11,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
11
11
|
'auth-type': string[];
|
|
12
12
|
'bin-links': BooleanConstructor;
|
|
13
13
|
browser: (StringConstructor | null)[];
|
|
14
|
-
ca: (
|
|
14
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
15
15
|
cafile: import("path").PlatformPath;
|
|
16
16
|
cache: import("path").PlatformPath;
|
|
17
17
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -20,7 +20,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
20
20
|
'cache-max': NumberConstructor;
|
|
21
21
|
'cache-min': NumberConstructor;
|
|
22
22
|
cert: (StringConstructor | null)[];
|
|
23
|
-
cidr: (
|
|
23
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
24
24
|
color: (string | BooleanConstructor)[];
|
|
25
25
|
depth: NumberConstructor;
|
|
26
26
|
description: BooleanConstructor;
|
|
@@ -67,7 +67,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
67
67
|
'metrics-registry': (StringConstructor | null)[];
|
|
68
68
|
'node-options': (StringConstructor | null)[];
|
|
69
69
|
'node-version': ((() => void) | null)[];
|
|
70
|
-
'no-proxy': (
|
|
70
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
71
71
|
offline: BooleanConstructor;
|
|
72
72
|
'onload-script': (StringConstructor | null)[];
|
|
73
73
|
only: (string | null)[];
|
package/lib/fetch.d.ts
CHANGED
|
@@ -6,13 +6,9 @@ export declare const rcOptionsTypes: () => {
|
|
|
6
6
|
'resolution-only': BooleanConstructor;
|
|
7
7
|
recursive: BooleanConstructor;
|
|
8
8
|
force: any;
|
|
9
|
-
global: any;
|
|
10
|
-
production: any;
|
|
11
|
-
offline: any;
|
|
12
|
-
registry: any;
|
|
13
|
-
optional: any;
|
|
14
|
-
only: any;
|
|
15
9
|
dev: any;
|
|
10
|
+
optional: any;
|
|
11
|
+
global: any;
|
|
16
12
|
'engine-strict': any;
|
|
17
13
|
'fetch-retries': any;
|
|
18
14
|
'fetch-retry-factor': any;
|
|
@@ -21,8 +17,12 @@ export declare const rcOptionsTypes: () => {
|
|
|
21
17
|
'https-proxy': any;
|
|
22
18
|
'ignore-scripts': any;
|
|
23
19
|
'prefer-offline': any;
|
|
20
|
+
production: any;
|
|
24
21
|
proxy: any;
|
|
22
|
+
registry: any;
|
|
25
23
|
'scripts-prepend-node-path': any;
|
|
24
|
+
offline: any;
|
|
25
|
+
only: any;
|
|
26
26
|
'unsafe-perm': any;
|
|
27
27
|
};
|
|
28
28
|
export { cliOptionsTypes };
|
package/lib/install.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type Config } from '@pnpm/config';
|
|
5
5
|
import { type CreateStoreControllerOptions } from '@pnpm/store-connection-manager';
|
|
6
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
6
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
7
7
|
access: (string | null)[];
|
|
8
8
|
'allow-same-version': BooleanConstructor;
|
|
9
9
|
'always-auth': BooleanConstructor;
|
|
@@ -12,7 +12,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
12
12
|
'auth-type': string[];
|
|
13
13
|
'bin-links': BooleanConstructor;
|
|
14
14
|
browser: (StringConstructor | null)[];
|
|
15
|
-
ca: (
|
|
15
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
16
16
|
cafile: import("path").PlatformPath;
|
|
17
17
|
cache: import("path").PlatformPath;
|
|
18
18
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -21,7 +21,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
21
21
|
'cache-max': NumberConstructor;
|
|
22
22
|
'cache-min': NumberConstructor;
|
|
23
23
|
cert: (StringConstructor | null)[];
|
|
24
|
-
cidr: (
|
|
24
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
25
25
|
color: (string | BooleanConstructor)[];
|
|
26
26
|
depth: NumberConstructor;
|
|
27
27
|
description: BooleanConstructor;
|
|
@@ -68,7 +68,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
68
68
|
'metrics-registry': (StringConstructor | null)[];
|
|
69
69
|
'node-options': (StringConstructor | null)[];
|
|
70
70
|
'node-version': ((() => void) | null)[];
|
|
71
|
-
'no-proxy': (
|
|
71
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
72
72
|
offline: BooleanConstructor;
|
|
73
73
|
'onload-script': (StringConstructor | null)[];
|
|
74
74
|
only: (string | null)[];
|
|
@@ -123,19 +123,15 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "dev" | "optional" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm">;
|
|
127
127
|
export declare const cliOptionsTypes: () => {
|
|
128
128
|
'fix-lockfile': BooleanConstructor;
|
|
129
129
|
'resolution-only': BooleanConstructor;
|
|
130
130
|
recursive: BooleanConstructor;
|
|
131
131
|
force: any;
|
|
132
|
-
global: any;
|
|
133
|
-
production: any;
|
|
134
|
-
offline: any;
|
|
135
|
-
registry: any;
|
|
136
|
-
optional: any;
|
|
137
|
-
only: any;
|
|
138
132
|
dev: any;
|
|
133
|
+
optional: any;
|
|
134
|
+
global: any;
|
|
139
135
|
'engine-strict': any;
|
|
140
136
|
'fetch-retries': any;
|
|
141
137
|
'fetch-retry-factor': any;
|
|
@@ -144,8 +140,12 @@ export declare const cliOptionsTypes: () => {
|
|
|
144
140
|
'https-proxy': any;
|
|
145
141
|
'ignore-scripts': any;
|
|
146
142
|
'prefer-offline': any;
|
|
143
|
+
production: any;
|
|
147
144
|
proxy: any;
|
|
145
|
+
registry: any;
|
|
148
146
|
'scripts-prepend-node-path': any;
|
|
147
|
+
offline: any;
|
|
148
|
+
only: any;
|
|
149
149
|
'unsafe-perm': any;
|
|
150
150
|
};
|
|
151
151
|
export declare const shorthands: {
|
|
@@ -154,7 +154,7 @@ export declare const shorthands: {
|
|
|
154
154
|
};
|
|
155
155
|
export declare const commandNames: string[];
|
|
156
156
|
export declare function help(): string;
|
|
157
|
-
export type InstallCommandOptions = Pick<Config, 'allProjects' | 'autoInstallPeers' | 'bail' | 'bin' | 'cliOptions' | 'dedupePeerDependents' | 'deployAllFiles' | 'depth' | 'dev' | 'engineStrict' | 'frozenLockfile' | 'global' | 'globalPnpmfile' | 'hooks' | 'ignorePnpmfile' | 'ignoreScripts' | 'linkWorkspacePackages' | 'rawLocalConfig' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'pnpmfile' | 'preferFrozenLockfile' | 'production' | 'registries' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'allProjectsGraph' | 'selectedProjectsGraph' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'tag' | 'optional' | 'virtualStoreDir' | 'workspaceConcurrency' | 'workspaceDir' | 'extraEnv' | 'resolutionMode' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles'> & CreateStoreControllerOptions & {
|
|
157
|
+
export type InstallCommandOptions = Pick<Config, 'allProjects' | 'autoInstallPeers' | 'bail' | 'bin' | 'cliOptions' | 'dedupeDirectDeps' | 'dedupePeerDependents' | 'deployAllFiles' | 'depth' | 'dev' | 'engineStrict' | 'frozenLockfile' | 'global' | 'globalPnpmfile' | 'hooks' | 'ignorePnpmfile' | 'ignoreScripts' | 'linkWorkspacePackages' | 'rawLocalConfig' | 'lockfileDir' | 'lockfileOnly' | 'modulesDir' | 'pnpmfile' | 'preferFrozenLockfile' | 'production' | 'registries' | 'rootProjectManifest' | 'rootProjectManifestDir' | 'save' | 'saveDev' | 'saveExact' | 'saveOptional' | 'savePeer' | 'savePrefix' | 'saveProd' | 'saveWorkspaceProtocol' | 'lockfileIncludeTarballUrl' | 'allProjectsGraph' | 'selectedProjectsGraph' | 'sideEffectsCache' | 'sideEffectsCacheReadonly' | 'sort' | 'sharedWorkspaceLockfile' | 'tag' | 'optional' | 'virtualStoreDir' | 'workspaceConcurrency' | 'workspaceDir' | 'extraEnv' | 'resolutionMode' | 'ignoreWorkspaceCycles' | 'disallowWorkspaceCycles'> & CreateStoreControllerOptions & {
|
|
158
158
|
argv: {
|
|
159
159
|
original: string[];
|
|
160
160
|
};
|
package/lib/install.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"install.js","sourceRoot":"","sources":["../src/install.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"install.js","sourceRoot":"","sources":["../src/install.ts"],"names":[],"mappings":"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"}
|
package/lib/link.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { type Config } from '@pnpm/config';
|
|
|
6
6
|
import { type CreateStoreControllerOptions } from '@pnpm/store-connection-manager';
|
|
7
7
|
type LinkOpts = CreateStoreControllerOptions & Pick<Config, 'bin' | 'cliOptions' | 'engineStrict' | 'saveDev' | 'saveOptional' | 'saveProd' | 'workspaceDir' | 'sharedWorkspaceLockfile'> & Partial<Pick<Config, 'linkWorkspacePackages'>>;
|
|
8
8
|
export declare const rcOptionsTypes: typeof cliOptionsTypes;
|
|
9
|
-
export declare function cliOptionsTypes(): Pick<Partial<Record<"
|
|
9
|
+
export declare function cliOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
10
10
|
access: (string | null)[];
|
|
11
11
|
'allow-same-version': BooleanConstructor;
|
|
12
12
|
'always-auth': BooleanConstructor;
|
|
@@ -15,7 +15,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
15
15
|
'auth-type': string[];
|
|
16
16
|
'bin-links': BooleanConstructor;
|
|
17
17
|
browser: (StringConstructor | null)[];
|
|
18
|
-
ca: (
|
|
18
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
19
19
|
cafile: path.PlatformPath;
|
|
20
20
|
cache: path.PlatformPath;
|
|
21
21
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -24,7 +24,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
24
24
|
'cache-max': NumberConstructor;
|
|
25
25
|
'cache-min': NumberConstructor;
|
|
26
26
|
cert: (StringConstructor | null)[];
|
|
27
|
-
cidr: (
|
|
27
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
28
28
|
color: (string | BooleanConstructor)[];
|
|
29
29
|
depth: NumberConstructor;
|
|
30
30
|
description: BooleanConstructor;
|
|
@@ -71,7 +71,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
71
71
|
'metrics-registry': (StringConstructor | null)[];
|
|
72
72
|
'node-options': (StringConstructor | null)[];
|
|
73
73
|
'node-version': ((() => void) | null)[];
|
|
74
|
-
'no-proxy': (
|
|
74
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
75
75
|
offline: BooleanConstructor;
|
|
76
76
|
'onload-script': (StringConstructor | null)[];
|
|
77
77
|
only: (string | null)[];
|
|
@@ -126,7 +126,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
126
126
|
versions: BooleanConstructor;
|
|
127
127
|
viewer: StringConstructor;
|
|
128
128
|
_exit: BooleanConstructor;
|
|
129
|
-
}, "global" | "production" | "registry" | "only" | "
|
|
129
|
+
}, "global" | "production" | "registry" | "only" | "unsafe-perm" | "save-dev" | "save-optional" | "save-exact" | "save-prefix">;
|
|
130
130
|
export declare const commandNames: string[];
|
|
131
131
|
export declare function help(): string;
|
|
132
132
|
export declare function handler(opts: LinkOpts, params?: string[]): Promise<void>;
|
package/lib/prune.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import * as install from './install';
|
|
5
5
|
export declare const rcOptionsTypes: typeof cliOptionsTypes;
|
|
6
|
-
export declare function cliOptionsTypes(): Pick<Partial<Record<"
|
|
6
|
+
export declare function cliOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
7
7
|
access: (string | null)[];
|
|
8
8
|
'allow-same-version': BooleanConstructor;
|
|
9
9
|
'always-auth': BooleanConstructor;
|
|
@@ -12,7 +12,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
12
12
|
'auth-type': string[];
|
|
13
13
|
'bin-links': BooleanConstructor;
|
|
14
14
|
browser: (StringConstructor | null)[];
|
|
15
|
-
ca: (
|
|
15
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
16
16
|
cafile: import("path").PlatformPath;
|
|
17
17
|
cache: import("path").PlatformPath;
|
|
18
18
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -21,7 +21,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
21
21
|
'cache-max': NumberConstructor;
|
|
22
22
|
'cache-min': NumberConstructor;
|
|
23
23
|
cert: (StringConstructor | null)[];
|
|
24
|
-
cidr: (
|
|
24
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
25
25
|
color: (string | BooleanConstructor)[];
|
|
26
26
|
depth: NumberConstructor;
|
|
27
27
|
description: BooleanConstructor;
|
|
@@ -68,7 +68,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
68
68
|
'metrics-registry': (StringConstructor | null)[];
|
|
69
69
|
'node-options': (StringConstructor | null)[];
|
|
70
70
|
'node-version': ((() => void) | null)[];
|
|
71
|
-
'no-proxy': (
|
|
71
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
72
72
|
offline: BooleanConstructor;
|
|
73
73
|
'onload-script': (StringConstructor | null)[];
|
|
74
74
|
only: (string | null)[];
|
|
@@ -123,7 +123,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"color" | "global
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "dev" | "optional" | "production">;
|
|
127
127
|
export declare const commandNames: string[];
|
|
128
128
|
export declare function help(): string;
|
|
129
129
|
export declare function handler(opts: install.InstallCommandOptions): Promise<void>;
|
package/lib/remove.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { type CompletionFunc } from '@pnpm/command';
|
|
5
5
|
import { type Config } from '@pnpm/config';
|
|
6
6
|
import { type CreateStoreControllerOptions } from '@pnpm/store-connection-manager';
|
|
7
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
7
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
8
8
|
access: (string | null)[];
|
|
9
9
|
'allow-same-version': BooleanConstructor;
|
|
10
10
|
'always-auth': BooleanConstructor;
|
|
@@ -13,7 +13,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
13
13
|
'auth-type': string[];
|
|
14
14
|
'bin-links': BooleanConstructor;
|
|
15
15
|
browser: (StringConstructor | null)[];
|
|
16
|
-
ca: (
|
|
16
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
17
17
|
cafile: import("path").PlatformPath;
|
|
18
18
|
cache: import("path").PlatformPath;
|
|
19
19
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -22,7 +22,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
22
22
|
'cache-max': NumberConstructor;
|
|
23
23
|
'cache-min': NumberConstructor;
|
|
24
24
|
cert: (StringConstructor | null)[];
|
|
25
|
-
cidr: (
|
|
25
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
26
26
|
color: (string | BooleanConstructor)[];
|
|
27
27
|
depth: NumberConstructor;
|
|
28
28
|
description: BooleanConstructor;
|
|
@@ -69,7 +69,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
69
69
|
'metrics-registry': (StringConstructor | null)[];
|
|
70
70
|
'node-options': (StringConstructor | null)[];
|
|
71
71
|
'node-version': ((() => void) | null)[];
|
|
72
|
-
'no-proxy': (
|
|
72
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
73
73
|
offline: BooleanConstructor;
|
|
74
74
|
'onload-script': (StringConstructor | null)[];
|
|
75
75
|
only: (string | null)[];
|
package/lib/update/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type CompletionFunc } from '@pnpm/command';
|
|
5
5
|
import { type InstallCommandOptions } from '../install';
|
|
6
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
6
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional" | "force" | "depth" | "tag" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "color" | "save" | "loglevel" | "cert" | "key" | "ca" | "globalconfig" | "userconfig" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "save-exact" | "save-prefix" | "node-version" | "local-address" | "no-proxy" | "strict-ssl" | "user-agent" | "package-lock", any>> & {
|
|
7
7
|
access: (string | null)[];
|
|
8
8
|
'allow-same-version': BooleanConstructor;
|
|
9
9
|
'always-auth': BooleanConstructor;
|
|
@@ -12,7 +12,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
12
12
|
'auth-type': string[];
|
|
13
13
|
'bin-links': BooleanConstructor;
|
|
14
14
|
browser: (StringConstructor | null)[];
|
|
15
|
-
ca: (
|
|
15
|
+
ca: (StringConstructor | ArrayConstructor | null)[];
|
|
16
16
|
cafile: import("path").PlatformPath;
|
|
17
17
|
cache: import("path").PlatformPath;
|
|
18
18
|
'cache-lock-stale': NumberConstructor;
|
|
@@ -21,7 +21,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
21
21
|
'cache-max': NumberConstructor;
|
|
22
22
|
'cache-min': NumberConstructor;
|
|
23
23
|
cert: (StringConstructor | null)[];
|
|
24
|
-
cidr: (
|
|
24
|
+
cidr: (StringConstructor | ArrayConstructor | null)[];
|
|
25
25
|
color: (string | BooleanConstructor)[];
|
|
26
26
|
depth: NumberConstructor;
|
|
27
27
|
description: BooleanConstructor;
|
|
@@ -68,7 +68,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
68
68
|
'metrics-registry': (StringConstructor | null)[];
|
|
69
69
|
'node-options': (StringConstructor | null)[];
|
|
70
70
|
'node-version': ((() => void) | null)[];
|
|
71
|
-
'no-proxy': (
|
|
71
|
+
'no-proxy': (StringConstructor | ArrayConstructor | null)[];
|
|
72
72
|
offline: BooleanConstructor;
|
|
73
73
|
'onload-script': (StringConstructor | null)[];
|
|
74
74
|
only: (string | null)[];
|
|
@@ -123,22 +123,17 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"color" | "global"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "dev" | "optional" | "force" | "depth" | "global" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "production" | "proxy" | "registry" | "scripts-prepend-node-path" | "offline" | "only" | "unsafe-perm" | "save" | "save-exact" | "save-prefix">;
|
|
127
127
|
export declare function cliOptionsTypes(): {
|
|
128
128
|
interactive: BooleanConstructor;
|
|
129
129
|
latest: BooleanConstructor;
|
|
130
130
|
recursive: BooleanConstructor;
|
|
131
131
|
workspace: BooleanConstructor;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
production: any;
|
|
132
|
+
dev: any;
|
|
133
|
+
optional: any;
|
|
135
134
|
force: any;
|
|
136
135
|
depth: any;
|
|
137
|
-
|
|
138
|
-
registry: any;
|
|
139
|
-
optional: any;
|
|
140
|
-
only: any;
|
|
141
|
-
dev: any;
|
|
136
|
+
global: any;
|
|
142
137
|
'engine-strict': any;
|
|
143
138
|
'fetch-retries': any;
|
|
144
139
|
'fetch-retry-factor': any;
|
|
@@ -147,11 +142,16 @@ export declare function cliOptionsTypes(): {
|
|
|
147
142
|
'https-proxy': any;
|
|
148
143
|
'ignore-scripts': any;
|
|
149
144
|
'prefer-offline': any;
|
|
145
|
+
production: any;
|
|
150
146
|
proxy: any;
|
|
151
|
-
|
|
152
|
-
'save-prefix': any;
|
|
147
|
+
registry: any;
|
|
153
148
|
'scripts-prepend-node-path': any;
|
|
149
|
+
offline: any;
|
|
150
|
+
only: any;
|
|
154
151
|
'unsafe-perm': any;
|
|
152
|
+
save: any;
|
|
153
|
+
'save-exact': any;
|
|
154
|
+
'save-prefix': any;
|
|
155
155
|
};
|
|
156
156
|
export declare const shorthands: {
|
|
157
157
|
D: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/plugin-commands-installation",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.11",
|
|
4
4
|
"description": "Commands for installation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/plugin-commands-installation#readme",
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@pnpm/registry-mock": "3.16.0",
|
|
26
|
-
"@types/proxyquire": "^1.3.
|
|
26
|
+
"@types/proxyquire": "^1.3.31",
|
|
27
27
|
"@types/ramda": "0.28.20",
|
|
28
28
|
"@types/sinon": "^10.0.20",
|
|
29
|
-
"@types/yarnpkg__lockfile": "^1.1.
|
|
29
|
+
"@types/yarnpkg__lockfile": "^1.1.9",
|
|
30
30
|
"@types/zkochan__table": "npm:@types/table@6.0.0",
|
|
31
31
|
"delay": "^5.0.0",
|
|
32
32
|
"jest-diff": "^29.7.0",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"write-json-file": "^4.3.0",
|
|
40
40
|
"write-pkg": "4.0.0",
|
|
41
41
|
"write-yaml-file": "^5.0.0",
|
|
42
|
-
"@pnpm/assert-project": "2.3.42",
|
|
43
42
|
"@pnpm/modules-yaml": "12.1.4",
|
|
44
|
-
"@pnpm/plugin-commands-installation": "14.0.
|
|
43
|
+
"@pnpm/plugin-commands-installation": "14.0.11",
|
|
44
|
+
"@pnpm/assert-project": "2.3.42",
|
|
45
45
|
"@pnpm/prepare": "0.0.85",
|
|
46
46
|
"@pnpm/test-fixtures": "0.1.15"
|
|
47
47
|
},
|
|
@@ -67,32 +67,32 @@
|
|
|
67
67
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
68
68
|
"render-help": "^1.0.3",
|
|
69
69
|
"version-selector-type": "^3.0.0",
|
|
70
|
-
"@pnpm/cli-utils": "2.1.2",
|
|
71
|
-
"@pnpm/common-cli-options-help": "1.0.0",
|
|
72
70
|
"@pnpm/command": "4.0.0",
|
|
71
|
+
"@pnpm/cli-utils": "2.1.4",
|
|
73
72
|
"@pnpm/config": "20.1.2",
|
|
74
|
-
"@pnpm/
|
|
75
|
-
"@pnpm/core": "13.1.9",
|
|
73
|
+
"@pnpm/common-cli-options-help": "1.0.0",
|
|
76
74
|
"@pnpm/dedupe.check": "1.0.5",
|
|
77
|
-
"@pnpm/
|
|
78
|
-
"@pnpm/
|
|
75
|
+
"@pnpm/constants": "7.1.1",
|
|
76
|
+
"@pnpm/core": "13.1.10",
|
|
79
77
|
"@pnpm/find-workspace-dir": "6.0.2",
|
|
78
|
+
"@pnpm/filter-workspace-packages": "7.2.6",
|
|
79
|
+
"@pnpm/error": "5.0.2",
|
|
80
80
|
"@pnpm/graceful-fs": "3.2.0",
|
|
81
81
|
"@pnpm/lockfile-types": "5.1.3",
|
|
82
82
|
"@pnpm/manifest-utils": "5.0.5",
|
|
83
|
-
"@pnpm/outdated": "13.0.
|
|
83
|
+
"@pnpm/outdated": "13.0.35",
|
|
84
84
|
"@pnpm/matcher": "5.0.0",
|
|
85
85
|
"@pnpm/package-store": "19.0.10",
|
|
86
86
|
"@pnpm/parse-wanted-dependency": "5.0.0",
|
|
87
87
|
"@pnpm/pnpmfile": "5.0.17",
|
|
88
|
-
"@pnpm/plugin-commands-rebuild": "10.0.7",
|
|
89
|
-
"@pnpm/resolver-base": "11.0.0",
|
|
90
|
-
"@pnpm/read-project-manifest": "5.0.8",
|
|
91
88
|
"@pnpm/sort-packages": "5.0.7",
|
|
89
|
+
"@pnpm/store-connection-manager": "7.0.18",
|
|
90
|
+
"@pnpm/read-project-manifest": "5.0.8",
|
|
91
|
+
"@pnpm/plugin-commands-rebuild": "10.0.9",
|
|
92
92
|
"@pnpm/types": "9.4.0",
|
|
93
|
-
"@pnpm/
|
|
94
|
-
"@pnpm/workspace.find-packages": "1.1.
|
|
95
|
-
"@pnpm/
|
|
93
|
+
"@pnpm/workspace.pkgs-graph": "2.0.11",
|
|
94
|
+
"@pnpm/workspace.find-packages": "1.1.5",
|
|
95
|
+
"@pnpm/resolver-base": "11.0.0"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
98
|
"@pnpm/logger": "^5.0.0"
|