Skip to content

Commit

Permalink
Fix error: The option alias has been renamed to shortFlag.
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzyCzech committed May 2, 2024
1 parent 971769d commit 2cd23ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const cli = meow(`
`, {
importMeta: import.meta, flags: {
verbose: {type: 'boolean', alias: 'v'},
write: {type: 'boolean', default: true, alias: 'w'},
verbose: {type: 'boolean', shortFlag: 'v'},
write: {type: 'boolean', default: true, shortFlag: 'w'},
},
});

Expand Down

0 comments on commit 2cd23ae

Please sign in to comment.