@pnpm/plugin-commands-installation 14.0.12 → 14.0.14
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 +12 -12
- package/lib/dedupe.d.ts +3 -3
- package/lib/fetch.d.ts +5 -5
- package/lib/install.d.ts +9 -9
- package/lib/link.d.ts +4 -4
- package/lib/prune.d.ts +4 -4
- package/lib/remove.d.ts +3 -3
- package/lib/update/index.d.ts +13 -13
- package/package.json +26 -26
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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
39
39
|
global: BooleanConstructor;
|
|
40
40
|
globalconfig: import("path").PlatformPath;
|
|
41
41
|
'global-style': BooleanConstructor;
|
|
42
|
-
group: (
|
|
42
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
114
114
|
unicode: BooleanConstructor;
|
|
115
115
|
'unsafe-perm': BooleanConstructor;
|
|
116
116
|
usage: BooleanConstructor;
|
|
117
|
-
user: (
|
|
117
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
118
118
|
userconfig: import("path").PlatformPath;
|
|
119
119
|
umask: () => void;
|
|
120
120
|
version: BooleanConstructor;
|
|
@@ -122,13 +122,18 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"force" | "depth"
|
|
|
122
122
|
versions: BooleanConstructor;
|
|
123
123
|
viewer: StringConstructor;
|
|
124
124
|
_exit: BooleanConstructor;
|
|
125
|
-
}, "
|
|
125
|
+
}, "optional" | "offline" | "global" | "production" | "force" | "registry" | "only" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "unsafe-perm" | "save-prod" | "save-dev" | "save-optional">;
|
|
126
126
|
export declare function cliOptionsTypes(): {
|
|
127
127
|
recursive: BooleanConstructor;
|
|
128
128
|
save: BooleanConstructor;
|
|
129
129
|
workspace: BooleanConstructor;
|
|
130
|
-
|
|
130
|
+
optional: any;
|
|
131
|
+
offline: any;
|
|
131
132
|
global: any;
|
|
133
|
+
production: any;
|
|
134
|
+
force: any;
|
|
135
|
+
registry: any;
|
|
136
|
+
only: any;
|
|
132
137
|
'engine-strict': any;
|
|
133
138
|
'fetch-retries': any;
|
|
134
139
|
'fetch-retry-factor': any;
|
|
@@ -137,18 +142,13 @@ export declare function cliOptionsTypes(): {
|
|
|
137
142
|
'https-proxy': any;
|
|
138
143
|
'ignore-scripts': any;
|
|
139
144
|
'prefer-offline': any;
|
|
140
|
-
production: any;
|
|
141
145
|
proxy: any;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
only: any;
|
|
145
|
-
optional: any;
|
|
146
|
+
'save-exact': any;
|
|
147
|
+
'save-prefix': any;
|
|
146
148
|
'unsafe-perm': any;
|
|
147
149
|
'save-prod': any;
|
|
148
150
|
'save-dev': any;
|
|
149
151
|
'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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
39
39
|
global: BooleanConstructor;
|
|
40
40
|
globalconfig: import("path").PlatformPath;
|
|
41
41
|
'global-style': BooleanConstructor;
|
|
42
|
-
group: (
|
|
42
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
114
114
|
unicode: BooleanConstructor;
|
|
115
115
|
'unsafe-perm': BooleanConstructor;
|
|
116
116
|
usage: BooleanConstructor;
|
|
117
|
-
user: (
|
|
117
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
118
118
|
userconfig: import("path").PlatformPath;
|
|
119
119
|
umask: () => void;
|
|
120
120
|
version: BooleanConstructor;
|
package/lib/fetch.d.ts
CHANGED
|
@@ -6,7 +6,12 @@ export declare const rcOptionsTypes: () => {
|
|
|
6
6
|
'resolution-only': BooleanConstructor;
|
|
7
7
|
recursive: BooleanConstructor;
|
|
8
8
|
force: any;
|
|
9
|
+
optional: any;
|
|
10
|
+
offline: any;
|
|
9
11
|
global: any;
|
|
12
|
+
production: any;
|
|
13
|
+
registry: any;
|
|
14
|
+
only: any;
|
|
10
15
|
dev: any;
|
|
11
16
|
'engine-strict': any;
|
|
12
17
|
'fetch-retries': any;
|
|
@@ -16,13 +21,8 @@ export declare const rcOptionsTypes: () => {
|
|
|
16
21
|
'https-proxy': any;
|
|
17
22
|
'ignore-scripts': any;
|
|
18
23
|
'prefer-offline': any;
|
|
19
|
-
production: any;
|
|
20
24
|
proxy: any;
|
|
21
|
-
registry: any;
|
|
22
25
|
'scripts-prepend-node-path': any;
|
|
23
|
-
offline: any;
|
|
24
|
-
only: any;
|
|
25
|
-
optional: 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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
|
@@ -123,13 +123,18 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"force" | "depth"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "global" | "dev" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "
|
|
126
|
+
}, "optional" | "offline" | "global" | "production" | "registry" | "only" | "dev" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "scripts-prepend-node-path" | "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
|
+
optional: any;
|
|
133
|
+
offline: any;
|
|
132
134
|
global: any;
|
|
135
|
+
production: any;
|
|
136
|
+
registry: any;
|
|
137
|
+
only: any;
|
|
133
138
|
dev: any;
|
|
134
139
|
'engine-strict': any;
|
|
135
140
|
'fetch-retries': any;
|
|
@@ -139,13 +144,8 @@ export declare const cliOptionsTypes: () => {
|
|
|
139
144
|
'https-proxy': any;
|
|
140
145
|
'ignore-scripts': any;
|
|
141
146
|
'prefer-offline': any;
|
|
142
|
-
production: any;
|
|
143
147
|
proxy: any;
|
|
144
|
-
registry: any;
|
|
145
148
|
'scripts-prepend-node-path': any;
|
|
146
|
-
offline: any;
|
|
147
|
-
only: any;
|
|
148
|
-
optional: any;
|
|
149
149
|
'unsafe-perm': any;
|
|
150
150
|
};
|
|
151
151
|
export declare const shorthands: {
|
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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
43
43
|
global: BooleanConstructor;
|
|
44
44
|
globalconfig: path.PlatformPath;
|
|
45
45
|
'global-style': BooleanConstructor;
|
|
46
|
-
group: (
|
|
46
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
118
118
|
unicode: BooleanConstructor;
|
|
119
119
|
'unsafe-perm': BooleanConstructor;
|
|
120
120
|
usage: BooleanConstructor;
|
|
121
|
-
user: (
|
|
121
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
122
122
|
userconfig: path.PlatformPath;
|
|
123
123
|
umask: () => void;
|
|
124
124
|
version: BooleanConstructor;
|
|
@@ -126,7 +126,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"force" | "depth"
|
|
|
126
126
|
versions: BooleanConstructor;
|
|
127
127
|
viewer: StringConstructor;
|
|
128
128
|
_exit: BooleanConstructor;
|
|
129
|
-
}, "global" | "production" | "registry" | "only" | "
|
|
129
|
+
}, "global" | "production" | "registry" | "only" | "save-exact" | "save-prefix" | "unsafe-perm" | "save-dev" | "save-optional">;
|
|
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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
|
@@ -123,7 +123,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"force" | "depth"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "optional" | "production" | "dev">;
|
|
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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
41
41
|
global: BooleanConstructor;
|
|
42
42
|
globalconfig: import("path").PlatformPath;
|
|
43
43
|
'global-style': BooleanConstructor;
|
|
44
|
-
group: (
|
|
44
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
116
116
|
unicode: BooleanConstructor;
|
|
117
117
|
'unsafe-perm': BooleanConstructor;
|
|
118
118
|
usage: BooleanConstructor;
|
|
119
|
-
user: (
|
|
119
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
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<"optional" | "key" | "color" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "loglevel" | "only" | "dev" | "cert" | "ca" | "tag" | "globalconfig" | "userconfig" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm" | "user-agent" | "local-address" | "dry-run" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "node-version" | "no-proxy" | "strict-ssl" | "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<"force" | "depth"
|
|
|
40
40
|
global: BooleanConstructor;
|
|
41
41
|
globalconfig: import("path").PlatformPath;
|
|
42
42
|
'global-style': BooleanConstructor;
|
|
43
|
-
group: (
|
|
43
|
+
group: (StringConstructor | NumberConstructor)[];
|
|
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<"force" | "depth"
|
|
|
115
115
|
unicode: BooleanConstructor;
|
|
116
116
|
'unsafe-perm': BooleanConstructor;
|
|
117
117
|
usage: BooleanConstructor;
|
|
118
|
-
user: (
|
|
118
|
+
user: (StringConstructor | NumberConstructor)[];
|
|
119
119
|
userconfig: import("path").PlatformPath;
|
|
120
120
|
umask: () => void;
|
|
121
121
|
version: BooleanConstructor;
|
|
@@ -123,15 +123,21 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"force" | "depth"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "force" | "depth" | "
|
|
126
|
+
}, "optional" | "offline" | "global" | "save" | "production" | "force" | "depth" | "registry" | "only" | "dev" | "engine-strict" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-maxtimeout" | "fetch-retry-mintimeout" | "https-proxy" | "ignore-scripts" | "prefer-offline" | "proxy" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "unsafe-perm">;
|
|
127
127
|
export declare function cliOptionsTypes(): {
|
|
128
128
|
interactive: BooleanConstructor;
|
|
129
129
|
latest: BooleanConstructor;
|
|
130
130
|
recursive: BooleanConstructor;
|
|
131
131
|
workspace: BooleanConstructor;
|
|
132
|
+
optional: any;
|
|
133
|
+
offline: any;
|
|
134
|
+
global: any;
|
|
135
|
+
save: any;
|
|
136
|
+
production: any;
|
|
132
137
|
force: any;
|
|
133
138
|
depth: any;
|
|
134
|
-
|
|
139
|
+
registry: any;
|
|
140
|
+
only: any;
|
|
135
141
|
dev: any;
|
|
136
142
|
'engine-strict': any;
|
|
137
143
|
'fetch-retries': any;
|
|
@@ -141,17 +147,11 @@ export declare function cliOptionsTypes(): {
|
|
|
141
147
|
'https-proxy': any;
|
|
142
148
|
'ignore-scripts': any;
|
|
143
149
|
'prefer-offline': any;
|
|
144
|
-
production: any;
|
|
145
150
|
proxy: any;
|
|
146
|
-
registry: any;
|
|
147
|
-
'scripts-prepend-node-path': any;
|
|
148
|
-
offline: any;
|
|
149
|
-
only: any;
|
|
150
|
-
optional: any;
|
|
151
|
-
'unsafe-perm': any;
|
|
152
|
-
save: any;
|
|
153
151
|
'save-exact': any;
|
|
154
152
|
'save-prefix': any;
|
|
153
|
+
'scripts-prepend-node-path': any;
|
|
154
|
+
'unsafe-perm': 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.14",
|
|
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/
|
|
43
|
-
"@pnpm/
|
|
44
|
-
"@pnpm/
|
|
45
|
-
"@pnpm/test-fixtures": "0.1.
|
|
46
|
-
"@pnpm/prepare": "0.0.
|
|
42
|
+
"@pnpm/assert-project": "2.3.43",
|
|
43
|
+
"@pnpm/modules-yaml": "12.1.5",
|
|
44
|
+
"@pnpm/plugin-commands-installation": "14.0.14",
|
|
45
|
+
"@pnpm/test-fixtures": "0.1.16",
|
|
46
|
+
"@pnpm/prepare": "0.0.86"
|
|
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/cli-utils": "2.1.5",
|
|
70
71
|
"@pnpm/command": "4.0.0",
|
|
71
|
-
"@pnpm/constants": "7.1.1",
|
|
72
72
|
"@pnpm/common-cli-options-help": "1.0.0",
|
|
73
|
-
"@pnpm/
|
|
73
|
+
"@pnpm/config": "20.2.0",
|
|
74
|
+
"@pnpm/core": "13.2.0",
|
|
75
|
+
"@pnpm/constants": "7.1.1",
|
|
76
|
+
"@pnpm/dedupe.check": "1.0.6",
|
|
74
77
|
"@pnpm/error": "5.0.2",
|
|
75
|
-
"@pnpm/filter-workspace-packages": "7.2.
|
|
76
|
-
"@pnpm/
|
|
77
|
-
"@pnpm/config": "20.1.2",
|
|
78
|
+
"@pnpm/filter-workspace-packages": "7.2.7",
|
|
79
|
+
"@pnpm/find-workspace-dir": "6.0.2",
|
|
78
80
|
"@pnpm/graceful-fs": "3.2.0",
|
|
79
|
-
"@pnpm/
|
|
80
|
-
"@pnpm/
|
|
81
|
+
"@pnpm/lockfile-types": "5.1.4",
|
|
82
|
+
"@pnpm/manifest-utils": "5.0.6",
|
|
81
83
|
"@pnpm/matcher": "5.0.0",
|
|
82
84
|
"@pnpm/parse-wanted-dependency": "5.0.0",
|
|
83
|
-
"@pnpm/outdated": "13.0.
|
|
84
|
-
"@pnpm/
|
|
85
|
-
"@pnpm/
|
|
86
|
-
"@pnpm/
|
|
87
|
-
"@pnpm/
|
|
88
|
-
"@pnpm/
|
|
89
|
-
"@pnpm/sort-packages": "5.0.
|
|
90
|
-
"@pnpm/
|
|
91
|
-
"@pnpm/
|
|
92
|
-
"@pnpm/workspace.find-packages": "1.1.
|
|
93
|
-
"@pnpm/workspace.pkgs-graph": "2.0.
|
|
94
|
-
"@pnpm/find-workspace-dir": "6.0.2",
|
|
95
|
-
"@pnpm/package-store": "19.0.10"
|
|
85
|
+
"@pnpm/outdated": "13.0.37",
|
|
86
|
+
"@pnpm/package-store": "19.0.12",
|
|
87
|
+
"@pnpm/plugin-commands-rebuild": "10.0.11",
|
|
88
|
+
"@pnpm/pnpmfile": "5.0.18",
|
|
89
|
+
"@pnpm/resolver-base": "11.0.1",
|
|
90
|
+
"@pnpm/read-project-manifest": "5.0.9",
|
|
91
|
+
"@pnpm/sort-packages": "5.0.8",
|
|
92
|
+
"@pnpm/store-connection-manager": "7.0.20",
|
|
93
|
+
"@pnpm/types": "9.4.1",
|
|
94
|
+
"@pnpm/workspace.find-packages": "1.1.6",
|
|
95
|
+
"@pnpm/workspace.pkgs-graph": "2.0.12"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
98
|
"@pnpm/logger": "^5.0.0"
|