deno-cliffy
deno-cliffy copied to clipboard
Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Currently `minColWidth` and `maxColWidth` apply to every column in a table. Is there a way to set the min or max width for a specific column?
The rationale is that using stderr allows you to chain actual command output together with pipes. I updated `examples/prompt/input.ts` to demonstrate what I mean. Putting prompt output on stderr allows...
Context -------- For complicated CLIs, there can be lots of `.action(…)`s, and having your command implementation bodies indented inside of the `Command` builder is not always ideal. Even for small...
feat(help): Skip version checks if it will cause permission prompts When a user hasn't granted net permissions to the default upgrade provider, they would be prompted to allow it when...
Passing an empty string (`""`) to an option with a required value results in an error. In case of optional value the string is ignored and you get `true` instead....
I think it would be useful if it were possible to parse the command line arguments without also executing the command actions. This would allow you add some logic in...
I've been using the grouped select prompts for a little while now, and I'm very happy with them. The only thing I've noticed that feels "off" is that I use...