Skip to content

Commit 7c0bbfc

Browse files
authored
fix: add missing -a alias support for --all (#93)
1 parent 0583441 commit 7c0bbfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/parse-args.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export function loadCliArgs(argv = process.argv) {
7777
.version(version)
7878
.usage('[...files]')
7979
.option('--preid <preid>', 'ID for prerelease')
80-
.option('--all', `Include all files (default: ${bumpConfigDefaults.all})`)
80+
.option('-a, --all', `Include all files (default: ${bumpConfigDefaults.all})`)
8181
.option('--no-git-check', `Skip git check`, { default: bumpConfigDefaults.noGitCheck })
8282
.option('-c, --commit [msg]', 'Commit message', { default: true })
8383
.option('--no-commit', 'Skip commit', { default: false })

0 commit comments

Comments
 (0)