Skip to content

Commit 30aee91

Browse files
committed
1 parent f2d9ae8 commit 30aee91

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: packages/plugin-vue-jsx/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.3](https://github.com/vitejs/vite/compare/[email protected]@1.3.3) (2021-12-20)
2+
3+
4+
15
## [1.3.2](https://github.com/vitejs/vite/compare/[email protected]@1.3.2) (2021-12-13)
26

37

Diff for: packages/plugin-vue-jsx/package.json

+1-1
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": [

Diff for: scripts/release.ts

+3-3
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)