We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to the underlying argument option parser ( the following invocation: runex -r ts-node/register runnable -r whatever will not receive the arguments `'-r', 'whatever', and will instead be called with zero arguments (tj/commander.js#1127) A failing test has already been added to https://github.com/karfau/runex/compare/fix/stop-at-first-positional?expand=1
runex -r ts-node/register runnable -r whatever
The workaround for now is to add -- before runnable: runex -r ts-node/register -- runnable -r whatever
--
runnable
runex -r ts-node/register -- runnable -r whatever
I made an attempt to fix it by moving to yargs-parser but it has other issues.
Currently I'm evaluating the aailable options/arguments for picking the right parser: https://github.com/karfau/node-cli-arguments-options
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Due to the underlying argument option parser ( the following invocation:
runex -r ts-node/register runnable -r whatever
will not receive the arguments `'-r', 'whatever', and will instead be called with zero arguments (tj/commander.js#1127)
A failing test has already been added to https://github.com/karfau/runex/compare/fix/stop-at-first-positional?expand=1
The workaround for now is to add
--
beforerunnable
:runex -r ts-node/register -- runnable -r whatever
I made an attempt to fix it by moving to yargs-parser but it has other issues.
Currently I'm evaluating the aailable options/arguments for picking the right parser: https://github.com/karfau/node-cli-arguments-options
The text was updated successfully, but these errors were encountered: