Skip to content

Commit

Permalink
chore: Update VersionBumpOptions type description (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsypower authored Mar 7, 2024
1 parent e7b07b4 commit 9efbed9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types/version-bump-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export interface VersionBumpOptions {
* with the new version number. If the message string does _not_ contain any `%s` placeholders,
* then the new version number will be appended to the message.
*
* Defaults to `false`.
* Defaults to `true`.
*/
commit?: boolean | string

Expand All @@ -45,14 +45,14 @@ export interface VersionBumpOptions {
* with the new version number. If the tag string does _not_ contain any `%s` placeholders,
* then the new version number will be appended to the tag.
*
* Defaults to `false`.
* Defaults to `true`.
*/
tag?: boolean | string

/**
* Indicates whether to push the git commit and tag.
*
* Defaults to `false`.
* Defaults to `true`.
*/
push?: boolean

Expand All @@ -67,7 +67,7 @@ export interface VersionBumpOptions {
/**
* Prompt for confirmation
*
* @default false
* @default true
*/
confirm?: boolean

Expand Down

0 comments on commit 9efbed9

Please sign in to comment.