Skip to content

Commit

Permalink
fix(deps): update dependency meow to v6 (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and JustinBeckwith committed Dec 23, 2019
1 parent da2c010 commit 3bd911c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"finalhandler": "^1.1.2",
"gaxios": "^2.0.1",
"jsonexport": "^2.4.1",
"meow": "^5.0.0",
"meow": "^6.0.0",
"p-queue": "^6.2.1",
"serve-static": "^1.14.1",
"server-destroy": "^1.0.1",
Expand Down
5 changes: 3 additions & 2 deletions src/cli.ts
Expand Up @@ -54,11 +54,12 @@ const cli = meow(
flags: {
config: { type: 'string' },
concurrency: { type: 'string' },
recurse: { type: 'boolean', alias: 'r', default: undefined },
recurse: { type: 'boolean', alias: 'r' },
skip: { type: 'string', alias: 's' },
format: { type: 'string', alias: 'f' },
silent: { type: 'boolean', default: undefined },
silent: { type: 'boolean' },
},
booleanDefault: undefined,
}
);

Expand Down

0 comments on commit 3bd911c

Please sign in to comment.