File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
5
## [ 1.3.2] ( https://github.com/vitejs/vite/compare/plugin-vue-jsx@1.3.1...plugin-vue-jsx@1.3.2 ) (2021-12-13)
2
6
3
7
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @vitejs/plugin-vue-jsx" ,
3
- "version" : " 1.3.2 " ,
3
+ "version" : " 1.3.3 " ,
4
4
"license" : " MIT" ,
5
5
"author" : " Evan You" ,
6
6
"files" : [
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const versionIncrements: ReleaseType[] = [
31
31
]
32
32
33
33
const inc : ( i : ReleaseType ) => string = ( i ) =>
34
- semver . inc ( currentVersion , i , 'beta' )
34
+ semver . inc ( currentVersion , i , 'beta' ) !
35
35
36
36
type RunFn = (
37
37
bin : string ,
@@ -75,7 +75,7 @@ async function main(): Promise<void> {
75
75
} )
76
76
targetVersion = res . version
77
77
} else {
78
- targetVersion = release . match ( / \( ( .* ) \) / ) [ 1 ]
78
+ targetVersion = release . match ( / \( ( .* ) \) / ) ! [ 1 ]
79
79
}
80
80
}
81
81
@@ -171,7 +171,7 @@ async function publishPackage(
171
171
stdio : 'pipe'
172
172
} )
173
173
console . log ( chalk . green ( `Successfully published ${ pkgName } @${ version } ` ) )
174
- } catch ( e ) {
174
+ } catch ( e : any ) {
175
175
if ( e . stderr . match ( / p r e v i o u s l y p u b l i s h e d / ) ) {
176
176
console . log ( chalk . red ( `Skipping already published: ${ pkgName } ` ) )
177
177
} else {
You can’t perform that action at this time.
0 commit comments