Skip to content

Commit 30aee91

Browse files
committed
release: plugin-vue-jsx@1.3.3
1 parent f2d9ae8 commit 30aee91

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

packages/plugin-vue-jsx/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.3](https://github.com/vitejs/vite/compare/plugin-vue-jsx@1.3.2...plugin-vue-jsx@1.3.3) (2021-12-20)
2+
3+
4+
15
## [1.3.2](https://github.com/vitejs/vite/compare/plugin-vue-jsx@1.3.1...plugin-vue-jsx@1.3.2) (2021-12-13)
26

37

packages/plugin-vue-jsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vitejs/plugin-vue-jsx",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"license": "MIT",
55
"author": "Evan You",
66
"files": [

scripts/release.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const versionIncrements: ReleaseType[] = [
3131
]
3232

3333
const inc: (i: ReleaseType) => string = (i) =>
34-
semver.inc(currentVersion, i, 'beta')
34+
semver.inc(currentVersion, i, 'beta')!
3535

3636
type RunFn = (
3737
bin: string,
@@ -75,7 +75,7 @@ async function main(): Promise<void> {
7575
})
7676
targetVersion = res.version
7777
} else {
78-
targetVersion = release.match(/\((.*)\)/)[1]
78+
targetVersion = release.match(/\((.*)\)/)![1]
7979
}
8080
}
8181

@@ -171,7 +171,7 @@ async function publishPackage(
171171
stdio: 'pipe'
172172
})
173173
console.log(chalk.green(`Successfully published ${pkgName}@${version}`))
174-
} catch (e) {
174+
} catch (e: any) {
175175
if (e.stderr.match(/previously published/)) {
176176
console.log(chalk.red(`Skipping already published: ${pkgName}`))
177177
} else {

0 commit comments

Comments
 (0)