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

Compiled package with dnt npm upgrade provider works fine on node but on bun: ``` ▶ bun /git/windmill/cli/npm/esm/main.js upgrade 87 | } 88 | }); 89 | }), 90 |...

https://github.com/c4spar/deno-cliffy/blob/33b01f838f5cf84cac86d271b0b4c00311bef0de/internal/runtime/read_sync.ts#L4 ``` [dnt] Top level await cannot be used when distributing CommonJS/UMD (See deps/jsr.io/@cliffy/internal/1.0.0-rc.5/runtime/read_sync.ts 6:5). Please re-organize your code to not use a top level await or only distribute an...

In some cases, commands have options that imply other options, say: ```bash -m, --metrics - Enable the metrics collector. --metrics-endpoint - Endpoint to serve metrics on. Implies --metrics. Default value:...

Cliffy [allows to map option values](https://cliffy.io/[email protected]/command/options#map-option-value), but doesn't wait for any promises returned from the value function. One could make the argument that this is by design and the action...

Hi, In my use case i have an option defined like this: ``` .option('-v, --version ', 'The version part of the tag /:--') ``` This option is called inside a...