@pnpm/plugin-commands-installation 14.0.11 → 14.0.12
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 +3 -3
- package/lib/dedupe.d.ts +1 -1
- package/lib/fetch.d.ts +2 -2
- package/lib/install.d.ts +4 -4
- package/lib/link.d.ts +1 -1
- package/lib/prune.d.ts +2 -2
- package/lib/remove.d.ts +1 -1
- package/lib/update/index.d.ts +4 -4
- 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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
|
@@ -122,12 +122,11 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional"
|
|
|
122
122
|
versions: BooleanConstructor;
|
|
123
123
|
viewer: StringConstructor;
|
|
124
124
|
_exit: BooleanConstructor;
|
|
125
|
-
}, "
|
|
125
|
+
}, "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" | "optional" | "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
|
-
optional: any;
|
|
131
130
|
force: any;
|
|
132
131
|
global: any;
|
|
133
132
|
'engine-strict': any;
|
|
@@ -143,6 +142,7 @@ export declare function cliOptionsTypes(): {
|
|
|
143
142
|
registry: any;
|
|
144
143
|
offline: any;
|
|
145
144
|
only: any;
|
|
145
|
+
optional: any;
|
|
146
146
|
'unsafe-perm': any;
|
|
147
147
|
'save-prod': any;
|
|
148
148
|
'save-dev': any;
|
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
package/lib/fetch.d.ts
CHANGED
|
@@ -6,9 +6,8 @@ export declare const rcOptionsTypes: () => {
|
|
|
6
6
|
'resolution-only': BooleanConstructor;
|
|
7
7
|
recursive: BooleanConstructor;
|
|
8
8
|
force: any;
|
|
9
|
-
dev: any;
|
|
10
|
-
optional: any;
|
|
11
9
|
global: any;
|
|
10
|
+
dev: any;
|
|
12
11
|
'engine-strict': any;
|
|
13
12
|
'fetch-retries': any;
|
|
14
13
|
'fetch-retry-factor': any;
|
|
@@ -23,6 +22,7 @@ export declare const rcOptionsTypes: () => {
|
|
|
23
22
|
'scripts-prepend-node-path': any;
|
|
24
23
|
offline: any;
|
|
25
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
|
@@ -123,15 +123,14 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "global" | "dev" | "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" | "optional" | "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
|
-
dev: any;
|
|
133
|
-
optional: any;
|
|
134
132
|
global: any;
|
|
133
|
+
dev: any;
|
|
135
134
|
'engine-strict': any;
|
|
136
135
|
'fetch-retries': any;
|
|
137
136
|
'fetch-retry-factor': any;
|
|
@@ -146,6 +145,7 @@ export declare const cliOptionsTypes: () => {
|
|
|
146
145
|
'scripts-prepend-node-path': any;
|
|
147
146
|
offline: any;
|
|
148
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
|
@@ -123,7 +123,7 @@ export declare function cliOptionsTypes(): Pick<Partial<Record<"dev" | "optional
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "dev" | "
|
|
126
|
+
}, "dev" | "production" | "optional">;
|
|
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
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<"force" | "depth" | "tag" | "global" | "dev" | "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" | "optional" | "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;
|
|
@@ -123,17 +123,16 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"dev" | "optional"
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "force" | "depth" | "global" | "dev" | "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" | "optional" | "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
|
-
dev: any;
|
|
133
|
-
optional: any;
|
|
134
132
|
force: any;
|
|
135
133
|
depth: any;
|
|
136
134
|
global: any;
|
|
135
|
+
dev: any;
|
|
137
136
|
'engine-strict': any;
|
|
138
137
|
'fetch-retries': any;
|
|
139
138
|
'fetch-retry-factor': any;
|
|
@@ -148,6 +147,7 @@ export declare function cliOptionsTypes(): {
|
|
|
148
147
|
'scripts-prepend-node-path': any;
|
|
149
148
|
offline: any;
|
|
150
149
|
only: any;
|
|
150
|
+
optional: any;
|
|
151
151
|
'unsafe-perm': any;
|
|
152
152
|
save: any;
|
|
153
153
|
'save-exact': any;
|
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.12",
|
|
4
4
|
"description": "Commands for installation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"write-pkg": "4.0.0",
|
|
41
41
|
"write-yaml-file": "^5.0.0",
|
|
42
42
|
"@pnpm/modules-yaml": "12.1.4",
|
|
43
|
-
"@pnpm/plugin-commands-installation": "14.0.
|
|
43
|
+
"@pnpm/plugin-commands-installation": "14.0.12",
|
|
44
44
|
"@pnpm/assert-project": "2.3.42",
|
|
45
|
-
"@pnpm/
|
|
46
|
-
"@pnpm/
|
|
45
|
+
"@pnpm/test-fixtures": "0.1.15",
|
|
46
|
+
"@pnpm/prepare": "0.0.85"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@pnpm/colorize-semver-diff": "^1.0.1",
|
|
@@ -68,31 +68,31 @@
|
|
|
68
68
|
"render-help": "^1.0.3",
|
|
69
69
|
"version-selector-type": "^3.0.0",
|
|
70
70
|
"@pnpm/command": "4.0.0",
|
|
71
|
-
"@pnpm/
|
|
72
|
-
"@pnpm/config": "20.1.2",
|
|
71
|
+
"@pnpm/constants": "7.1.1",
|
|
73
72
|
"@pnpm/common-cli-options-help": "1.0.0",
|
|
74
73
|
"@pnpm/dedupe.check": "1.0.5",
|
|
75
|
-
"@pnpm/constants": "7.1.1",
|
|
76
|
-
"@pnpm/core": "13.1.10",
|
|
77
|
-
"@pnpm/find-workspace-dir": "6.0.2",
|
|
78
|
-
"@pnpm/filter-workspace-packages": "7.2.6",
|
|
79
74
|
"@pnpm/error": "5.0.2",
|
|
75
|
+
"@pnpm/filter-workspace-packages": "7.2.6",
|
|
76
|
+
"@pnpm/core": "13.1.11",
|
|
77
|
+
"@pnpm/config": "20.1.2",
|
|
80
78
|
"@pnpm/graceful-fs": "3.2.0",
|
|
79
|
+
"@pnpm/cli-utils": "2.1.4",
|
|
81
80
|
"@pnpm/lockfile-types": "5.1.3",
|
|
82
|
-
"@pnpm/manifest-utils": "5.0.5",
|
|
83
|
-
"@pnpm/outdated": "13.0.35",
|
|
84
81
|
"@pnpm/matcher": "5.0.0",
|
|
85
|
-
"@pnpm/package-store": "19.0.10",
|
|
86
82
|
"@pnpm/parse-wanted-dependency": "5.0.0",
|
|
83
|
+
"@pnpm/outdated": "13.0.35",
|
|
84
|
+
"@pnpm/plugin-commands-rebuild": "10.0.9",
|
|
87
85
|
"@pnpm/pnpmfile": "5.0.17",
|
|
88
|
-
"@pnpm/
|
|
89
|
-
"@pnpm/store-connection-manager": "7.0.18",
|
|
86
|
+
"@pnpm/manifest-utils": "5.0.5",
|
|
90
87
|
"@pnpm/read-project-manifest": "5.0.8",
|
|
91
|
-
"@pnpm/
|
|
88
|
+
"@pnpm/resolver-base": "11.0.0",
|
|
89
|
+
"@pnpm/sort-packages": "5.0.7",
|
|
92
90
|
"@pnpm/types": "9.4.0",
|
|
93
|
-
"@pnpm/
|
|
91
|
+
"@pnpm/store-connection-manager": "7.0.18",
|
|
94
92
|
"@pnpm/workspace.find-packages": "1.1.5",
|
|
95
|
-
"@pnpm/
|
|
93
|
+
"@pnpm/workspace.pkgs-graph": "2.0.11",
|
|
94
|
+
"@pnpm/find-workspace-dir": "6.0.2",
|
|
95
|
+
"@pnpm/package-store": "19.0.10"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
98
|
"@pnpm/logger": "^5.0.0"
|