@oclif/plugin-help 5.1.0 → 5.1.4
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/CHANGELOG.md +28 -0
- package/lib/commands/help.js +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [5.1.4](https://github.com/oclif/plugin-help/compare/v5.1.3...v5.1.4) (2021-12-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* bump deps ([#329](https://github.com/oclif/plugin-help/issues/329)) ([97ec486](https://github.com/oclif/plugin-help/commit/97ec48619a849f9023b7fd8816414b4410a08dd2))
|
|
11
|
+
|
|
12
|
+
### [5.1.3](https://github.com/oclif/plugin-help/compare/v5.1.2...v5.1.3) (2021-11-18)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* bump oclif/core one more time ([#309](https://github.com/oclif/plugin-help/issues/309)) ([ca5a5b1](https://github.com/oclif/plugin-help/commit/ca5a5b10b79904588ed8fba55dac1ef83d84f4ad))
|
|
18
|
+
|
|
19
|
+
### [5.1.2](https://github.com/oclif/plugin-help/compare/v5.1.1...v5.1.2) (2021-11-08)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* bump oclif/core to v1 ([#304](https://github.com/oclif/plugin-help/issues/304)) ([4dbe2fc](https://github.com/oclif/plugin-help/commit/4dbe2fc3f09f477efe98ba49a7c585a395ca3cfb))
|
|
25
|
+
|
|
26
|
+
### [5.1.1](https://github.com/oclif/plugin-help/compare/v5.1.0...v5.1.1) (2021-09-29)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* adjust help text to new style guide ([#282](https://github.com/oclif/plugin-help/issues/282)) ([58e35ce](https://github.com/oclif/plugin-help/commit/58e35ce281dcb302e801d09d2e4a05bf7a6fa0cc))
|
|
32
|
+
|
|
5
33
|
## [5.1.0](https://github.com/oclif/plugin-help/compare/v5.0.1...v5.1.0) (2021-09-23)
|
|
6
34
|
|
|
7
35
|
|
package/lib/commands/help.js
CHANGED
|
@@ -9,14 +9,14 @@ class HelpCommand extends core_1.Command {
|
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
exports.default = HelpCommand;
|
|
12
|
-
HelpCommand.description = '
|
|
12
|
+
HelpCommand.description = 'Display help for <%= config.bin %>.';
|
|
13
13
|
HelpCommand.flags = {
|
|
14
14
|
'nested-commands': core_1.Flags.boolean({
|
|
15
|
-
description: '
|
|
15
|
+
description: 'Include all nested commands in the output.',
|
|
16
16
|
char: 'n',
|
|
17
17
|
}),
|
|
18
18
|
};
|
|
19
19
|
HelpCommand.args = [
|
|
20
|
-
{ name: 'command', required: false, description: '
|
|
20
|
+
{ name: 'command', required: false, description: 'Command to show help for.' },
|
|
21
21
|
];
|
|
22
22
|
HelpCommand.strict = false;
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"5.1.
|
|
1
|
+
{"version":"5.1.4","commands":{"help":{"id":"help","description":"Display help for <%= config.bin %>.","strict":false,"pluginName":"@oclif/plugin-help","pluginAlias":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"nested-commands":{"name":"nested-commands","type":"boolean","char":"n","description":"Include all nested commands in the output.","allowNo":false}},"args":[{"name":"command","description":"Command to show help for.","required":false}]}}}
|
package/package.json
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-help",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "5.1.
|
|
3
|
+
"description": "Standard help for oclif.",
|
|
4
|
+
"version": "5.1.4",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-help/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^0.
|
|
8
|
+
"@oclif/core": "^1.0.4"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@oclif/
|
|
12
|
-
"@oclif/plugin-plugins": "^1.10.1",
|
|
11
|
+
"@oclif/plugin-plugins": "^2.0.2",
|
|
13
12
|
"@oclif/test": "core-v1",
|
|
14
13
|
"@types/chai": "^4.1.7",
|
|
15
14
|
"@types/mocha": "^8.0.0",
|
|
16
15
|
"chai": "^4.2.0",
|
|
17
16
|
"eslint": "^7.3.1",
|
|
18
|
-
"eslint-config-oclif": "^
|
|
19
|
-
"eslint-config-oclif-typescript": "^0.2
|
|
17
|
+
"eslint-config-oclif": "^4.0.0",
|
|
18
|
+
"eslint-config-oclif-typescript": "^1.0.2",
|
|
20
19
|
"mocha": "^8.2.1",
|
|
21
|
-
"oclif": "^
|
|
20
|
+
"oclif": "^2.0.0-main.10",
|
|
22
21
|
"shx": "^0.3.3",
|
|
23
22
|
"ts-node": "^9.1.1",
|
|
24
23
|
"typescript": "^4.3.5"
|
|
@@ -50,7 +49,7 @@
|
|
|
50
49
|
"pretest": "yarn build && tsc --noEmit",
|
|
51
50
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
52
51
|
"posttest": "yarn lint",
|
|
53
|
-
"prepack": "yarn run build && oclif
|
|
52
|
+
"prepack": "yarn run build && oclif manifest .",
|
|
54
53
|
"postpack": "shx rm oclif.manifest.json"
|
|
55
54
|
},
|
|
56
55
|
"types": "./lib/help.d.ts"
|