Skip to content

Commit

Permalink
fix: --no-print-commits not working (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
noootwo authored Nov 4, 2024
1 parent cfd35a1 commit 5675e6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cli/parse-args.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export async function parseArgs(): Promise<ParsedArgs> {
ignoreScripts: args.ignoreScripts,
currentVersion: args.currentVersion,
execute: args.execute,
printCommits: args.printCommits,
recursive: args.recursive,
}),
}
Expand Down Expand Up @@ -90,7 +91,7 @@ export function loadCliArgs(argv = process.argv) {
.option('-q, --quiet', 'Quiet mode')
.option('-v, --version <version>', 'Target version')
.option('--current-version <version>', 'Current version')
.option('--print-commits', 'Print recent commits', { default: true })
.option('--print-commits', 'Print recent commits')
.option('-x, --execute <command>', 'Commands to execute after version bumps')
.help()

Expand Down

0 comments on commit 5675e6e

Please # to comment.