Skip to content

Commit 5675e6e

Browse files
authoredNov 4, 2024
fix: --no-print-commits not working (#57)
1 parent cfd35a1 commit 5675e6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/cli/parse-args.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export async function parseArgs(): Promise<ParsedArgs> {
4343
ignoreScripts: args.ignoreScripts,
4444
currentVersion: args.currentVersion,
4545
execute: args.execute,
46+
printCommits: args.printCommits,
4647
recursive: args.recursive,
4748
}),
4849
}
@@ -90,7 +91,7 @@ export function loadCliArgs(argv = process.argv) {
9091
.option('-q, --quiet', 'Quiet mode')
9192
.option('-v, --version <version>', 'Target version')
9293
.option('--current-version <version>', 'Current version')
93-
.option('--print-commits', 'Print recent commits', { default: true })
94+
.option('--print-commits', 'Print recent commits')
9495
.option('-x, --execute <command>', 'Commands to execute after version bumps')
9596
.help()
9697

0 commit comments

Comments
 (0)
Please sign in to comment.