We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When executing myapp --help, a nice table is presented with the information provided in cli.js.
myapp --help
cli.js
I believe the meow API allows for an examples object to be defined. It would be great to have this added to the help text tables.
examples
// cli.js //...code const examples = { 'Greet by first name': 'myapp greet --first-name Bob' }; const helpText = meowHelp({ name: 'content', flags: flags, commands: commands, examples: examples }); // ...rest of code
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When executing
myapp --help
, a nice table is presented with the information provided incli.js
.I believe the meow API allows for an
examples
object to be defined. It would be great to have this added to the help text tables.The text was updated successfully, but these errors were encountered: