Skip to content

Commit

Permalink
fix(deps): upgrade to meow 12.x (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed May 30, 2023
1 parent 4d682bf commit 03417c4
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 56 deletions.
138 changes: 86 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -29,7 +29,7 @@
"glob": "^9.3.2",
"htmlparser2": "^9.0.0",
"marked": "^4.0.3",
"meow": "^11.0.0",
"meow": "^12.0.1",
"mime": "^3.0.0",
"server-destroy": "^1.0.1",
"srcset": "^5.0.0"
Expand Down
6 changes: 3 additions & 3 deletions src/cli.ts
Expand Up @@ -93,9 +93,9 @@ const cli = meow(
flags: {
config: {type: 'string'},
concurrency: {type: 'number'},
recurse: {type: 'boolean', alias: 'r'},
skip: {type: 'string', alias: 's', isMultiple: true},
format: {type: 'string', alias: 'f'},
recurse: {type: 'boolean', shortFlag: 'r'},
skip: {type: 'string', shortFlag: 's', isMultiple: true},
format: {type: 'string', shortFlag: 'f'},
silent: {type: 'boolean'},
timeout: {type: 'number'},
markdown: {type: 'boolean'},
Expand Down

0 comments on commit 03417c4

Please sign in to comment.