feat(cli): support gitTag option for release command (#12134)

* feat(cli): support gitTag option for release command

* chore: exclude temp file

* release: vant v4.6.4-beta.1
This commit is contained in:
neverland
2023-07-30 11:50:56 +08:00
committed by GitHub
parent e6a0694807
commit b6d35cd268
4 changed files with 28 additions and 5 deletions
+1
View File
@@ -75,6 +75,7 @@ program
.command('release')
.description('Compile components and release it')
.option('--tag <tag>', 'Release tag')
.option('--gitTag', 'Generate git tag')
.action(async (options) => {
const { release } = await import('./commands/release.js');
return release(options);