We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
antfu
Learn more about funding links in repositories.
Report abuse
1 parent cfd35a1 commit 5675e6eCopy full SHA for 5675e6e
src/cli/parse-args.ts
@@ -43,6 +43,7 @@ export async function parseArgs(): Promise<ParsedArgs> {
43
ignoreScripts: args.ignoreScripts,
44
currentVersion: args.currentVersion,
45
execute: args.execute,
46
+ printCommits: args.printCommits,
47
recursive: args.recursive,
48
}),
49
}
@@ -90,7 +91,7 @@ export function loadCliArgs(argv = process.argv) {
90
91
.option('-q, --quiet', 'Quiet mode')
92
.option('-v, --version <version>', 'Target version')
93
.option('--current-version <version>', 'Current version')
- .option('--print-commits', 'Print recent commits', { default: true })
94
+ .option('--print-commits', 'Print recent commits')
95
.option('-x, --execute <command>', 'Commands to execute after version bumps')
96
.help()
97
0 commit comments