File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1
1
import type { VersionBumpProgress } from '../types/version-bump-progress'
2
2
import process from 'node:process'
3
- import symbols from 'log-symbols'
4
3
import * as ezSpawn from '@jsdevtools/ez-spawn'
5
- import { version as packageVersion } from '../../package.json '
4
+ import symbols from 'log-symbols '
6
5
import { ProgressEvent } from '../types/version-bump-progress'
7
6
import { versionBump } from '../version-bump'
8
7
import { ExitCode } from './exit-code'
@@ -20,12 +19,8 @@ export async function main(): Promise<void> {
20
19
// Parse the command-line arguments
21
20
const { help, version, quiet, options } = await parseArgs ( )
22
21
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
29
24
process . exit ( ExitCode . Success )
30
25
}
31
26
else {
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ export function loadCliArgs(argv = process.argv) {
89
89
. option ( '--no-verify' , 'Skip git verification' )
90
90
. option ( '--ignore-scripts' , `Ignore scripts (default: ${ bumpConfigDefaults . ignoreScripts } )` )
91
91
. option ( '-q, --quiet' , 'Quiet mode' )
92
- . option ( '-v, --version <version>' , 'Target version' )
93
92
. option ( '--current-version <version>' , 'Current version' )
94
93
. option ( '--print-commits' , 'Print recent commits' )
95
94
. option ( '-x, --execute <command>' , 'Commands to execute after version bumps' )
You can’t perform that action at this time.
0 commit comments