@pnpm/plugin-commands-listing 8.0.8 → 8.0.9
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/LICENSE +1 -1
- package/lib/list.d.ts +9 -9
- package/lib/ll.d.ts +5 -5
- package/lib/why.d.ts +9 -9
- package/package.json +9 -9
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2015-2016 Rico Sta. Cruz and other contributors
|
|
4
|
-
Copyright (c) 2016-
|
|
4
|
+
Copyright (c) 2016-2024 Zoltan Kochan and other contributors
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
package/lib/list.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type Config } from '@pnpm/config';
|
|
5
5
|
import { type IncludedDependencies } from '@pnpm/types';
|
|
6
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
6
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"depth" | "dev" | "global" | "only" | "optional" | "production" | "proxy" | "color" | "save" | "force" | "offline" | "registry" | "loglevel" | "cert" | "key" | "ca" | "tag" | "globalconfig" | "userconfig" | "dry-run" | "ignore-scripts" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-mintimeout" | "fetch-retry-maxtimeout" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "engine-strict" | "node-version" | "unsafe-perm" | "prefer-offline" | "https-proxy" | "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,19 +123,19 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
123
123
|
versions: BooleanConstructor;
|
|
124
124
|
viewer: StringConstructor;
|
|
125
125
|
_exit: BooleanConstructor;
|
|
126
|
-
}, "
|
|
126
|
+
}, "depth" | "dev" | "global" | "json" | "long" | "only" | "optional" | "parseable" | "production">;
|
|
127
127
|
export declare const cliOptionsTypes: () => {
|
|
128
128
|
'only-projects': BooleanConstructor;
|
|
129
129
|
recursive: BooleanConstructor;
|
|
130
|
-
|
|
130
|
+
depth: any;
|
|
131
131
|
dev: any;
|
|
132
|
-
optional: any;
|
|
133
132
|
global: any;
|
|
134
|
-
|
|
135
|
-
|
|
133
|
+
json: BooleanConstructor;
|
|
134
|
+
long: BooleanConstructor;
|
|
136
135
|
only: any;
|
|
136
|
+
optional: any;
|
|
137
137
|
parseable: BooleanConstructor;
|
|
138
|
-
|
|
138
|
+
production: any;
|
|
139
139
|
};
|
|
140
140
|
export declare const shorthands: {
|
|
141
141
|
D: string;
|
package/lib/ll.d.ts
CHANGED
|
@@ -4,15 +4,15 @@ export declare const rcOptionsTypes: typeof list.rcOptionsTypes;
|
|
|
4
4
|
export declare function cliOptionsTypes(): Omit<{
|
|
5
5
|
'only-projects': BooleanConstructor;
|
|
6
6
|
recursive: BooleanConstructor;
|
|
7
|
-
|
|
7
|
+
depth: any;
|
|
8
8
|
dev: any;
|
|
9
|
-
optional: any;
|
|
10
9
|
global: any;
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
json: BooleanConstructor;
|
|
11
|
+
long: BooleanConstructor;
|
|
13
12
|
only: any;
|
|
13
|
+
optional: any;
|
|
14
14
|
parseable: BooleanConstructor;
|
|
15
|
-
|
|
15
|
+
production: any;
|
|
16
16
|
}, "long">;
|
|
17
17
|
export declare const help: typeof list.help;
|
|
18
18
|
export declare function handler(opts: list.ListCommandOptions, params: string[]): Promise<string>;
|
package/lib/why.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/// <reference types="node" />
|
|
3
3
|
/// <reference types="node" />
|
|
4
4
|
import { type ListCommandOptions } from './list';
|
|
5
|
-
export declare function rcOptionsTypes(): Pick<Partial<Record<"
|
|
5
|
+
export declare function rcOptionsTypes(): Pick<Partial<Record<"depth" | "dev" | "global" | "only" | "optional" | "production" | "proxy" | "color" | "save" | "force" | "offline" | "registry" | "loglevel" | "cert" | "key" | "ca" | "tag" | "globalconfig" | "userconfig" | "dry-run" | "ignore-scripts" | "save-prod" | "save-dev" | "save-optional" | "script-shell" | "fetch-retries" | "fetch-retry-factor" | "fetch-retry-mintimeout" | "fetch-retry-maxtimeout" | "save-exact" | "save-prefix" | "scripts-prepend-node-path" | "engine-strict" | "node-version" | "unsafe-perm" | "prefer-offline" | "https-proxy" | "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,18 +122,18 @@ export declare function rcOptionsTypes(): Pick<Partial<Record<"key" | "user-agen
|
|
|
122
122
|
versions: BooleanConstructor;
|
|
123
123
|
viewer: StringConstructor;
|
|
124
124
|
_exit: BooleanConstructor;
|
|
125
|
-
}, "
|
|
125
|
+
}, "depth" | "dev" | "global" | "json" | "long" | "only" | "optional" | "parseable" | "production">;
|
|
126
126
|
export declare const cliOptionsTypes: () => {
|
|
127
127
|
recursive: BooleanConstructor;
|
|
128
|
-
|
|
128
|
+
depth: any;
|
|
129
129
|
dev: any;
|
|
130
|
-
optional: any;
|
|
131
130
|
global: any;
|
|
132
|
-
|
|
133
|
-
|
|
131
|
+
json: BooleanConstructor;
|
|
132
|
+
long: BooleanConstructor;
|
|
134
133
|
only: any;
|
|
134
|
+
optional: any;
|
|
135
135
|
parseable: BooleanConstructor;
|
|
136
|
-
|
|
136
|
+
production: any;
|
|
137
137
|
};
|
|
138
138
|
export declare const shorthands: {
|
|
139
139
|
D: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/plugin-commands-listing",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.9",
|
|
4
4
|
"description": "The list and why commands of pnpm",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -27,21 +27,21 @@
|
|
|
27
27
|
"execa": "npm:safe-execa@0.1.2",
|
|
28
28
|
"strip-ansi": "^6.0.1",
|
|
29
29
|
"write-yaml-file": "^5.0.0",
|
|
30
|
+
"@pnpm/filter-workspace-packages": "7.2.9",
|
|
31
|
+
"@pnpm/plugin-commands-listing": "8.0.9",
|
|
30
32
|
"@pnpm/constants": "7.1.1",
|
|
31
|
-
"@pnpm/
|
|
32
|
-
"@pnpm/plugin-commands-installation": "14.0
|
|
33
|
-
"@pnpm/plugin-commands-listing": "8.0.8",
|
|
34
|
-
"@pnpm/prepare": "0.0.87"
|
|
33
|
+
"@pnpm/prepare": "0.0.87",
|
|
34
|
+
"@pnpm/plugin-commands-installation": "14.1.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
38
38
|
"render-help": "^1.0.3",
|
|
39
|
-
"@pnpm/cli-utils": "2.1.
|
|
40
|
-
"@pnpm/config": "20.
|
|
39
|
+
"@pnpm/cli-utils": "2.1.7",
|
|
40
|
+
"@pnpm/config": "20.4.0",
|
|
41
41
|
"@pnpm/error": "5.0.2",
|
|
42
|
-
"@pnpm/
|
|
42
|
+
"@pnpm/types": "9.4.2",
|
|
43
43
|
"@pnpm/list": "9.1.8",
|
|
44
|
-
"@pnpm/
|
|
44
|
+
"@pnpm/common-cli-options-help": "1.1.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@pnpm/logger": "^5.0.0"
|