zors icon indicating copy to clipboard operation
zors copied to clipboard

feat(core): Support variadic options

Open sidwebworks opened this issue 2 years ago • 0 comments

The current parser is a fork of Deno's std/flags parser. However it does not support variadic options out of the box

cli add --files app.js index.html styles.css --no-commit

, hence we need to extend that functionality.

I thought of using yargs-parser due to such reasons but I don't want to introduce any dependencies in the core package

Also from what I understand, yargs-parser seems to use some node specific dependencies which I don't want to add.

sidwebworks avatar Jun 30 '22 17:06 sidwebworks