diff --git a/packages/plugin-vue-jsx/CHANGELOG.md b/packages/plugin-vue-jsx/CHANGELOG.md index 6483054fc5e070..d725541886ae3a 100644 --- a/packages/plugin-vue-jsx/CHANGELOG.md +++ b/packages/plugin-vue-jsx/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.3.3](https://github.com/vitejs/vite/compare/plugin-vue-jsx@1.3.2...plugin-vue-jsx@1.3.3) (2021-12-20) + + + ## [1.3.2](https://github.com/vitejs/vite/compare/plugin-vue-jsx@1.3.1...plugin-vue-jsx@1.3.2) (2021-12-13) diff --git a/packages/plugin-vue-jsx/package.json b/packages/plugin-vue-jsx/package.json index b55f44b7e1228e..0e85320dc50f19 100644 --- a/packages/plugin-vue-jsx/package.json +++ b/packages/plugin-vue-jsx/package.json @@ -1,6 +1,6 @@ { "name": "@vitejs/plugin-vue-jsx", - "version": "1.3.2", + "version": "1.3.3", "license": "MIT", "author": "Evan You", "files": [ diff --git a/scripts/release.ts b/scripts/release.ts index 37cd2d9cb26ecc..03461a8a0208ea 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -31,7 +31,7 @@ const versionIncrements: ReleaseType[] = [ ] const inc: (i: ReleaseType) => string = (i) => - semver.inc(currentVersion, i, 'beta') + semver.inc(currentVersion, i, 'beta')! type RunFn = ( bin: string, @@ -75,7 +75,7 @@ async function main(): Promise { }) targetVersion = res.version } else { - targetVersion = release.match(/\((.*)\)/)[1] + targetVersion = release.match(/\((.*)\)/)![1] } } @@ -171,7 +171,7 @@ async function publishPackage( stdio: 'pipe' }) console.log(chalk.green(`Successfully published ${pkgName}@${version}`)) - } catch (e) { + } catch (e: any) { if (e.stderr.match(/previously published/)) { console.log(chalk.red(`Skipping already published: ${pkgName}`)) } else {