jurassiscripts / velociraptor

The npm-style script runner for Deno

Home Page:https://velociraptor.run

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VrCommand parses additional arguments

umbopepato opened this issue · comments

While the arguments are still forwarded correctly, their syntax is normalized to --option [value] (removing any = signs). These may cause unintended effects when forwarded to CLIs that require a particular syntax (see #69).

@c4spar I'd ask you a little help here: this happens when using stopEarly() while the run command (which uses useRawArgs()) works correctly. Is this an intended behavior? If yes, can the two modifiers be used together to accomplish this without having to manually register the --help and --version commands?

@umbopepato i will look into it and check if i can pass non normalized arguments when using stopEarly.

@umbopepato i fixed the bug in cliffy and made a PR to upgrade cliffy in velociraptor.

Awesome, thank you so much @c4spar! 😊