@oclif/plugin-help 6.0.15 → 6.0.17
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/commands/help.d.ts +1 -1
- package/lib/commands/help.js +1 -1
- package/npm-shrinkwrap.json +16647 -0
- package/oclif.lock +1622 -1440
- package/oclif.manifest.json +3 -3
- package/package.json +16 -12
package/lib/commands/help.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command } from '@oclif/core';
|
|
2
2
|
export default class HelpCommand extends Command {
|
|
3
3
|
static args: {
|
|
4
|
-
|
|
4
|
+
command: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
|
|
5
5
|
};
|
|
6
6
|
static description: string;
|
|
7
7
|
static flags: {
|
package/lib/commands/help.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Args, Command, Flags, loadHelpClass } from '@oclif/core';
|
|
2
2
|
export default class HelpCommand extends Command {
|
|
3
3
|
static args = {
|
|
4
|
-
|
|
4
|
+
command: Args.string({ description: 'Command to show help for.', required: false }),
|
|
5
5
|
};
|
|
6
6
|
static description = 'Display help for <%= config.bin %>.';
|
|
7
7
|
static flags = {
|