Skip to content

Commit

Permalink
Merge pull request #185 from jimlindeman/master
Browse files Browse the repository at this point in the history
fix bad type in verbose default cli parameter
  • Loading branch information
hutson committed Jul 5, 2020
2 parents 0bca31c + 078ac6a commit 2590b2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/conventional-github-releaser/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const cli = meow({
},
verbose: {
alias: 'v',
default: 'false',
default: false,
type: 'boolean'
},
config: {
Expand Down
2 changes: 1 addition & 1 deletion packages/conventional-gitlab-releaser/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const cli = meow({
},
verbose: {
alias: 'v',
default: 'false',
default: false,
type: 'boolean'
},
config: {
Expand Down
2 changes: 1 addition & 1 deletion packages/conventional-tidelift-releaser/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const cli = meow({
},
verbose: {
alias: 'v',
default: 'false',
default: false,
type: 'boolean'
},
config: {
Expand Down

0 comments on commit 2590b2c

Please sign in to comment.