File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5
5
- Upgrade ` @prettier/plugin-pug ` to fix formatter issues. #2347 .
6
6
- Fix files with CRLF having errors with wrong range. #1319 .
7
7
- 🙌 Fix collapse code missing end mark. Thanks to contribution from [ @yoyo930021 ] ( https://github.com/yoyo930021 ) . #2303 and #2352 .
8
+ - 🙌 Display VTI errors. Thanks to contribution from [ @yoyo930021 ] ( https://github.com/yoyo930021 ) . #2324 and #2330 .
8
9
9
10
### 0.28.0 | 2020-09-23 | [ VSIX] ( https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.28.0/vspackage )
10
11
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ async function getDiagnostics(workspaceUri: URI) {
163
163
console . log ( ' vti diagnostics ---- Print all diagnostics' ) ;
164
164
console . log ( '' ) ;
165
165
}
166
- } ) ( ) . catch ( _err => {
167
- console . error ( 'VTI operation failed' ) ;
166
+ } ) ( ) . catch ( err => {
167
+ console . error ( `VTI operation failed with error: ${ err } ` ) ;
168
+ process . exit ( 1 ) ;
168
169
} ) ;
You can’t perform that action at this time.
0 commit comments