We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c5bd0 commit c87cf49Copy full SHA for c87cf49
goldens/public-api/manage.js
@@ -1,8 +1,8 @@
1
const {exec} = require('shelljs');
2
-const minimist = require('minimist');
+const {Parser: parser} = require('yargs/helpers');
3
4
// Remove all command line flags from the arguments.
5
-const argv = minimist(process.argv.slice(2));
+const argv = parser(process.argv.slice(2));
6
// The command the user would like to run, either 'accept' or 'test'
7
const USER_COMMAND = argv._[0];
8
// The shell command to query for all Public API guard tests.
0 commit comments