binary-install icon indicating copy to clipboard operation
binary-install copied to clipboard

Allow passing args to run

Open innovate-invent opened this issue 4 years ago • 5 comments

Ideally, the run command should accept args in place of process.argv.

function run() {
...
if (arguments.length > 0) var args = arguments;
else var [, , ...args] = process.argv;

innovate-invent avatar Mar 19 '20 00:03 innovate-invent