@oclif/plugin-help 6.0.22 → 6.1.0
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/README.md +1 -1
- package/lib/commands/help.d.ts +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ DESCRIPTION
|
|
|
27
27
|
Display help for oclif.
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
_See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.0
|
|
30
|
+
_See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.1.0/src/commands/help.ts)_
|
|
31
31
|
<!-- commandsstop -->
|
|
32
32
|
|
|
33
33
|
# Contributing
|
package/lib/commands/help.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
2
|
export default class HelpCommand extends Command {
|
|
3
3
|
static args: {
|
|
4
|
-
command: import("@oclif/core/
|
|
4
|
+
command: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
5
5
|
};
|
|
6
6
|
static description: string;
|
|
7
7
|
static flags: {
|
|
8
|
-
'nested-commands': import("@oclif/core/
|
|
8
|
+
'nested-commands': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
9
9
|
};
|
|
10
10
|
static strict: boolean;
|
|
11
11
|
run(): Promise<void>;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-help",
|
|
3
3
|
"description": "Standard help for oclif.",
|
|
4
|
-
"version": "6.0
|
|
4
|
+
"version": "6.1.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-help/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^
|
|
8
|
+
"@oclif/core": "^4.0.0-beta.13"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@commitlint/config-conventional": "^
|
|
11
|
+
"@commitlint/config-conventional": "^19",
|
|
12
12
|
"@oclif/prettier-config": "^0.2.1",
|
|
13
|
-
"@oclif/test": "^
|
|
13
|
+
"@oclif/test": "^4",
|
|
14
14
|
"@types/chai": "^4.3.11",
|
|
15
15
|
"@types/mocha": "^10.0.6",
|
|
16
16
|
"@types/node": "^18",
|
|
17
17
|
"chai": "^4.4.1",
|
|
18
|
-
"commitlint": "^
|
|
18
|
+
"commitlint": "^19",
|
|
19
19
|
"eslint": "^8.57.0",
|
|
20
20
|
"eslint-config-oclif": "^5.2.0",
|
|
21
21
|
"eslint-config-oclif-typescript": "^3.1.7",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"husky": "^9",
|
|
24
24
|
"lint-staged": "^15",
|
|
25
25
|
"mocha": "^10.4.0",
|
|
26
|
-
"oclif": "^4.
|
|
26
|
+
"oclif": "^4.11.1",
|
|
27
27
|
"prettier": "^3.2.5",
|
|
28
28
|
"shx": "^0.3.4",
|
|
29
29
|
"ts-node": "^10.9.2",
|