Skip to content

Commit 41f0c38

Browse files
authoredNov 4, 2024
fix: remove the useless option 'version' (#56)
1 parent 5675e6e commit 41f0c38

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed
 

‎src/cli/index.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import type { VersionBumpProgress } from '../types/version-bump-progress'
22
import process from 'node:process'
3-
import symbols from 'log-symbols'
43
import * as ezSpawn from '@jsdevtools/ez-spawn'
5-
import { version as packageVersion } from '../../package.json'
4+
import symbols from 'log-symbols'
65
import { ProgressEvent } from '../types/version-bump-progress'
76
import { versionBump } from '../version-bump'
87
import { ExitCode } from './exit-code'
@@ -20,12 +19,8 @@ export async function main(): Promise<void> {
2019
// Parse the command-line arguments
2120
const { help, version, quiet, options } = await parseArgs()
2221

23-
if (help) {
24-
process.exit(ExitCode.Success)
25-
}
26-
else if (version) {
27-
// Show the version number and exit
28-
console.log(packageVersion)
22+
if (help || version) {
23+
// Will be handled by cac, just need to exit
2924
process.exit(ExitCode.Success)
3025
}
3126
else {

‎src/cli/parse-args.ts

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ export function loadCliArgs(argv = process.argv) {
8989
.option('--no-verify', 'Skip git verification')
9090
.option('--ignore-scripts', `Ignore scripts (default: ${bumpConfigDefaults.ignoreScripts})`)
9191
.option('-q, --quiet', 'Quiet mode')
92-
.option('-v, --version <version>', 'Target version')
9392
.option('--current-version <version>', 'Current version')
9493
.option('--print-commits', 'Print recent commits')
9594
.option('-x, --execute <command>', 'Commands to execute after version bumps')

0 commit comments

Comments
 (0)
Please sign in to comment.