meow icon indicating copy to clipboard operation
meow copied to clipboard

🐈 CLI app helper

Results 33 meow issues
Sort by recently updated
recently updated
newest added

Not entirely sure the best way to handle this. Suggestions welcome :)

enhancement
question

I've been experimenting with an alternative approach to [PR# 205](https://github.com/sindresorhus/meow/pull/205) for adding `subcommands` support. My favorite feature of `meow` is the objects as configuration convention for `flags` and I was...

I ran the `npm run test`, and got a result of "57 tests passed". Is there any information about the radio on test coverage?

Could [`util.parseArgs`](https://nodejs.org/docs/latest-v18.x/api/util.html#utilparseargsconfig) be used instead of `yargs-parser` when targeting Node.js 18?

I'm coming from `commander`, which autogenerates documentation on flags, and was surprised to see that `meow`'s `autoHelp` feature doesn't do the same. ```javascript // in index.js const cli = require('meow')({...

enhancement
help wanted

Resolves #171 . - string, number can be used for choices array. Boolean value(true, false) can also be used though it does not make sense. - Flag from choices is...

It would be awesome if meow could adopt http://docopt.org/ to deduce additional behaviour from the help text. This could be * disabled by default * help with #69 * add...

As long as `{autoHelp: true}` or `{autoVersion: true}`. Currently, it fails: ``` ❯ node cli.js --help Unknown flag --help ``` --- // @weareoutman

bug
help wanted

Regarding this function and `read-pkg-up` https://github.com/sindresorhus/meow/blob/e1f0e24840634ae58664a70ee9e19ab80166b3f3/index.js#L112-L115 It felt very unnecessary to install 39 packages and 674 KB of data for just trying to read the closest package.json file Tried to...

os: windows10 node: v10.15.1 terminal: WSL ```ts const options = { flags: { rainbow: { type: 'boolean', alias: 'r' } } } meow(`...`, options) ``` ![image](https://user-images.githubusercontent.com/4105468/102510009-16a70180-407f-11eb-80eb-e1793b6e6e3a.png)