@pnpm/plugin-commands-installation 14.0.10 → 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 +15 -15
- package/lib/dedupe.d.ts +3 -3
- package/lib/fetch.d.ts +10 -10
- package/lib/install.d.ts +15 -15
- package/lib/install.js.map +1 -1
- package/lib/link.d.ts +4 -4
- package/lib/prune.d.ts +3 -3
- package/lib/remove.d.ts +3 -3
- package/lib/update/index.d.ts +18 -18
- package/package.json +19 -19
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;
|
|
@@ -39,7 +39,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
39
39
|
global: BooleanConstructor;
|
|
40
40
|
globalconfig: import("path").PlatformPath;
|
|
41
41
|
'global-style': BooleanConstructor;
|
|
42
|
-
group: (
|
|
42
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
43
43
|
'https-proxy': (typeof import("url") | null)[];
|
|
44
44
|
'user-agent': StringConstructor;
|
|
45
45
|
'ham-it-up': BooleanConstructor;
|
|
@@ -114,7 +114,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
114
114
|
unicode: BooleanConstructor;
|
|
115
115
|
'unsafe-perm': BooleanConstructor;
|
|
116
116
|
usage: BooleanConstructor;
|
|
117
|
-
user: (
|
|
117
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
118
118
|
userconfig: import("path").PlatformPath;
|
|
119
119
|
umask: () => void;
|
|
120
120
|
version: BooleanConstructor;
|
|
@@ -122,33 +122,33 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
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
|
-
registry: any;
|
|
131
130
|
optional: any;
|
|
132
131
|
force: any;
|
|
133
132
|
global: any;
|
|
133
|
+
'engine-strict': any;
|
|
134
|
+
'fetch-retries': any;
|
|
135
|
+
'fetch-retry-factor': any;
|
|
136
|
+
'fetch-retry-maxtimeout': any;
|
|
137
|
+
'fetch-retry-mintimeout': any;
|
|
138
|
+
'https-proxy': any;
|
|
139
|
+
'ignore-scripts': any;
|
|
140
|
+
'prefer-offline': any;
|
|
134
141
|
production: any;
|
|
142
|
+
proxy: any;
|
|
143
|
+
registry: any;
|
|
135
144
|
offline: any;
|
|
136
145
|
only: any;
|
|
137
|
-
|
|
138
|
-
'ignore-scripts': any;
|
|
146
|
+
'unsafe-perm': any;
|
|
139
147
|
'save-prod': any;
|
|
140
148
|
'save-dev': any;
|
|
141
149
|
'save-optional': any;
|
|
142
|
-
'fetch-retries': any;
|
|
143
|
-
'fetch-retry-factor': any;
|
|
144
|
-
'fetch-retry-mintimeout': any;
|
|
145
|
-
'fetch-retry-maxtimeout': any;
|
|
146
150
|
'save-exact': any;
|
|
147
151
|
'save-prefix': any;
|
|
148
|
-
'engine-strict': any;
|
|
149
|
-
'unsafe-perm': any;
|
|
150
|
-
'prefer-offline': any;
|
|
151
|
-
'https-proxy': 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;
|
|
@@ -39,7 +39,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
39
39
|
global: BooleanConstructor;
|
|
40
40
|
globalconfig: import("path").PlatformPath;
|
|
41
41
|
'global-style': BooleanConstructor;
|
|
42
|
-
group: (
|
|
42
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
43
43
|
'https-proxy': (typeof import("url") | null)[];
|
|
44
44
|
'user-agent': StringConstructor;
|
|
45
45
|
'ham-it-up': BooleanConstructor;
|
|
@@ -114,7 +114,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
114
114
|
unicode: BooleanConstructor;
|
|
115
115
|
'unsafe-perm': BooleanConstructor;
|
|
116
116
|
usage: BooleanConstructor;
|
|
117
|
-
user: (
|
|
117
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
118
118
|
userconfig: import("path").PlatformPath;
|
|
119
119
|
umask: () => void;
|
|
120
120
|
version: BooleanConstructor;
|
package/lib/fetch.d.ts
CHANGED
|
@@ -6,24 +6,24 @@ export declare const rcOptionsTypes: () => {
|
|
|
6
6
|
'resolution-only': BooleanConstructor;
|
|
7
7
|
recursive: BooleanConstructor;
|
|
8
8
|
force: any;
|
|
9
|
-
registry: any;
|
|
10
9
|
dev: any;
|
|
11
10
|
optional: any;
|
|
12
11
|
global: any;
|
|
13
|
-
|
|
14
|
-
offline: any;
|
|
15
|
-
only: any;
|
|
16
|
-
proxy: any;
|
|
17
|
-
'ignore-scripts': any;
|
|
12
|
+
'engine-strict': any;
|
|
18
13
|
'fetch-retries': any;
|
|
19
14
|
'fetch-retry-factor': any;
|
|
20
|
-
'fetch-retry-mintimeout': any;
|
|
21
15
|
'fetch-retry-maxtimeout': any;
|
|
16
|
+
'fetch-retry-mintimeout': any;
|
|
17
|
+
'https-proxy': any;
|
|
18
|
+
'ignore-scripts': any;
|
|
19
|
+
'prefer-offline': any;
|
|
20
|
+
production: any;
|
|
21
|
+
proxy: any;
|
|
22
|
+
registry: any;
|
|
22
23
|
'scripts-prepend-node-path': any;
|
|
23
|
-
|
|
24
|
+
offline: any;
|
|
25
|
+
only: any;
|
|
24
26
|
'unsafe-perm': any;
|
|
25
|
-
'prefer-offline': any;
|
|
26
|
-
'https-proxy': any;
|
|
27
27
|
};
|
|
28
28
|
export { cliOptionsTypes };
|
|
29
29
|
export declare const shorthands: {
|
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;
|
|
@@ -40,7 +40,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
44
44
|
'https-proxy': (typeof import("url") | null)[];
|
|
45
45
|
'user-agent': StringConstructor;
|
|
46
46
|
'ham-it-up': BooleanConstructor;
|
|
@@ -115,7 +115,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
|
@@ -123,30 +123,30 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
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
|
-
registry: any;
|
|
133
132
|
dev: any;
|
|
134
133
|
optional: any;
|
|
135
134
|
global: any;
|
|
136
|
-
|
|
137
|
-
offline: any;
|
|
138
|
-
only: any;
|
|
139
|
-
proxy: any;
|
|
140
|
-
'ignore-scripts': any;
|
|
135
|
+
'engine-strict': any;
|
|
141
136
|
'fetch-retries': any;
|
|
142
137
|
'fetch-retry-factor': any;
|
|
143
|
-
'fetch-retry-mintimeout': any;
|
|
144
138
|
'fetch-retry-maxtimeout': any;
|
|
139
|
+
'fetch-retry-mintimeout': any;
|
|
140
|
+
'https-proxy': any;
|
|
141
|
+
'ignore-scripts': any;
|
|
142
|
+
'prefer-offline': any;
|
|
143
|
+
production: any;
|
|
144
|
+
proxy: any;
|
|
145
|
+
registry: any;
|
|
145
146
|
'scripts-prepend-node-path': any;
|
|
146
|
-
|
|
147
|
+
offline: any;
|
|
148
|
+
only: any;
|
|
147
149
|
'unsafe-perm': any;
|
|
148
|
-
'prefer-offline': any;
|
|
149
|
-
'https-proxy': any;
|
|
150
150
|
};
|
|
151
151
|
export declare const shorthands: {
|
|
152
152
|
D: string;
|
|
@@ -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;
|
|
@@ -43,7 +43,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"key" | "user-age
|
|
|
43
43
|
global: BooleanConstructor;
|
|
44
44
|
globalconfig: path.PlatformPath;
|
|
45
45
|
'global-style': BooleanConstructor;
|
|
46
|
-
group: (
|
|
46
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
47
47
|
'https-proxy': (typeof import("url") | null)[];
|
|
48
48
|
'user-agent': StringConstructor;
|
|
49
49
|
'ham-it-up': BooleanConstructor;
|
|
@@ -118,7 +118,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"key" | "user-age
|
|
|
118
118
|
unicode: BooleanConstructor;
|
|
119
119
|
'unsafe-perm': BooleanConstructor;
|
|
120
120
|
usage: BooleanConstructor;
|
|
121
|
-
user: (
|
|
121
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
122
122
|
userconfig: path.PlatformPath;
|
|
123
123
|
umask: () => void;
|
|
124
124
|
version: BooleanConstructor;
|
|
@@ -126,7 +126,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"key" | "user-age
|
|
|
126
126
|
versions: BooleanConstructor;
|
|
127
127
|
viewer: StringConstructor;
|
|
128
128
|
_exit: BooleanConstructor;
|
|
129
|
-
}, "
|
|
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;
|
|
@@ -40,7 +40,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"key" | "user-age
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
44
44
|
'https-proxy': (typeof import("url") | null)[];
|
|
45
45
|
'user-agent': StringConstructor;
|
|
46
46
|
'ham-it-up': BooleanConstructor;
|
|
@@ -115,7 +115,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"key" | "user-age
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
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;
|
|
@@ -41,7 +41,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
41
41
|
global: BooleanConstructor;
|
|
42
42
|
globalconfig: import("path").PlatformPath;
|
|
43
43
|
'global-style': BooleanConstructor;
|
|
44
|
-
group: (
|
|
44
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
45
45
|
'https-proxy': (typeof import("url") | null)[];
|
|
46
46
|
'user-agent': StringConstructor;
|
|
47
47
|
'ham-it-up': BooleanConstructor;
|
|
@@ -116,7 +116,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
116
116
|
unicode: BooleanConstructor;
|
|
117
117
|
'unsafe-perm': BooleanConstructor;
|
|
118
118
|
usage: BooleanConstructor;
|
|
119
|
-
user: (
|
|
119
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
120
120
|
userconfig: import("path").PlatformPath;
|
|
121
121
|
umask: () => void;
|
|
122
122
|
version: BooleanConstructor;
|
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;
|
|
@@ -40,7 +40,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (NumberConstructor | StringConstructor)[];
|
|
44
44
|
'https-proxy': (typeof import("url") | null)[];
|
|
45
45
|
'user-agent': StringConstructor;
|
|
46
46
|
'ham-it-up': BooleanConstructor;
|
|
@@ -115,7 +115,7 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (NumberConstructor | StringConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
|
@@ -123,35 +123,35 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
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
|
-
registry: any;
|
|
133
132
|
dev: any;
|
|
134
133
|
optional: any;
|
|
135
134
|
force: any;
|
|
136
|
-
global: any;
|
|
137
|
-
save: any;
|
|
138
|
-
production: any;
|
|
139
135
|
depth: any;
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
proxy: any;
|
|
143
|
-
'ignore-scripts': any;
|
|
136
|
+
global: any;
|
|
137
|
+
'engine-strict': any;
|
|
144
138
|
'fetch-retries': any;
|
|
145
139
|
'fetch-retry-factor': any;
|
|
146
|
-
'fetch-retry-mintimeout': any;
|
|
147
140
|
'fetch-retry-maxtimeout': any;
|
|
148
|
-
'
|
|
149
|
-
'
|
|
141
|
+
'fetch-retry-mintimeout': any;
|
|
142
|
+
'https-proxy': any;
|
|
143
|
+
'ignore-scripts': any;
|
|
144
|
+
'prefer-offline': any;
|
|
145
|
+
production: any;
|
|
146
|
+
proxy: any;
|
|
147
|
+
registry: any;
|
|
150
148
|
'scripts-prepend-node-path': any;
|
|
151
|
-
|
|
149
|
+
offline: any;
|
|
150
|
+
only: any;
|
|
152
151
|
'unsafe-perm': any;
|
|
153
|
-
|
|
154
|
-
'
|
|
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",
|
|
@@ -39,11 +39,11 @@
|
|
|
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
|
-
"@pnpm/plugin-commands-installation": "14.0.10",
|
|
44
42
|
"@pnpm/modules-yaml": "12.1.4",
|
|
45
|
-
"@pnpm/
|
|
46
|
-
"@pnpm/
|
|
43
|
+
"@pnpm/plugin-commands-installation": "14.0.11",
|
|
44
|
+
"@pnpm/assert-project": "2.3.42",
|
|
45
|
+
"@pnpm/prepare": "0.0.85",
|
|
46
|
+
"@pnpm/test-fixtures": "0.1.15"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@pnpm/colorize-semver-diff": "^1.0.1",
|
|
@@ -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/common-cli-options-help": "1.0.0",
|
|
71
70
|
"@pnpm/command": "4.0.0",
|
|
72
|
-
"@pnpm/cli-utils": "2.1.
|
|
73
|
-
"@pnpm/core": "13.1.9",
|
|
71
|
+
"@pnpm/cli-utils": "2.1.4",
|
|
74
72
|
"@pnpm/config": "20.1.2",
|
|
75
|
-
"@pnpm/
|
|
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
|
+
"@pnpm/graceful-fs": "3.2.0",
|
|
80
81
|
"@pnpm/lockfile-types": "5.1.3",
|
|
81
82
|
"@pnpm/manifest-utils": "5.0.5",
|
|
82
|
-
"@pnpm/
|
|
83
|
-
"@pnpm/package-store": "19.0.10",
|
|
84
|
-
"@pnpm/outdated": "13.0.34",
|
|
83
|
+
"@pnpm/outdated": "13.0.35",
|
|
85
84
|
"@pnpm/matcher": "5.0.0",
|
|
85
|
+
"@pnpm/package-store": "19.0.10",
|
|
86
86
|
"@pnpm/parse-wanted-dependency": "5.0.0",
|
|
87
|
-
"@pnpm/plugin-commands-rebuild": "10.0.8",
|
|
88
87
|
"@pnpm/pnpmfile": "5.0.17",
|
|
89
|
-
"@pnpm/resolver-base": "11.0.0",
|
|
90
88
|
"@pnpm/sort-packages": "5.0.7",
|
|
91
|
-
"@pnpm/store-connection-manager": "7.0.
|
|
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
93
|
"@pnpm/workspace.pkgs-graph": "2.0.11",
|
|
94
|
-
"@pnpm/
|
|
95
|
-
"@pnpm/
|
|
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"
|