deno-cliffy icon indicating copy to clipboard operation
deno-cliffy copied to clipboard

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...

Results 75 deno-cliffy issues
Sort by recently updated
recently updated
newest added

I just discovered deno and cliffy and I think they are great for making cli's. I only wanted to report that the example on the main page doesn't work (attached...

When viewing the help output on a vertical monitor, almost all the help text wraps pretty terribly. It would be nice to be able to configure newlines between the help...

a sample script like this: ```ts import * as cliffy from 'jsr:@cliffy/[email protected]' const cli = new cliffy.Command() .name('test') .option('--files ', 'A list of files to watch') .option('--foobar', 'A foobar') .action(opts...

closes #647 @c4spar - This is a very early draft at implementing your suggested approach to allow the `parse` method to be called without executing. I've got this mostly working...

# Summary Add user defined terminal editor prompt type (`Editor`). # Motivation Allow full featured terminal (or ui) editor prompt. # Changes - Add `prompt/editor.ts`. # Todo - Add validations....

# Summary Add multiline prompt type (`TextBox`). # Motivation Allow direct multiline prompt in terminal (without editing features). # Changes - Add `prompt/textbox.ts`. # Todo - Support erase and text...

# Summary Add buit-in support of [gitea](https://about.gitea.com/) and [forgejo](https://forgejo.org) as upgrade provider. Gitea/Forgejo are self hotsed open-source alternative of Github. Forgejo is a compatible trully FOSS fork of Gitea. #...

Hi! I have this in my `deno.json`: ``` "cliffy/command": "https://deno.land/x/[email protected]/command/mod.ts", "cliffy/prompt": "https://deno.land/x/[email protected]/prompt/mod.ts", ``` The thing is, when trying to update to rc.7, by changing it to: ``` "cliffy/command": "https://deno.land/x/[email protected]/command/mod.ts", "cliffy/prompt":...

Currently, runtime detection rely on Deno not existing in global shim, but if a project uses Dnt, it will exist. To enable projects to keep using Deno shims while not...