Skip to content

Commit d4bdc80

Browse files
committed
build: replace minimist with yargs-parser
1 parent 194c5b9 commit d4bdc80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/devkit-admin

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
require('../lib/bootstrap-local');
1818

1919

20-
const minimist = require('minimist');
20+
const yargsParser = require('yargs-parser');
2121
const path = require('path');
2222

23-
const args = minimist(process.argv.slice(2), {
23+
const args = yargsParser(process.argv.slice(2), {
2424
boolean: ['verbose']
2525
});
2626
const scriptName = args._.shift();

0 commit comments

Comments
 (0)