Releases: vuejs/vetur
Releases · vuejs/vetur
0.17.0
0.17.0 | 2019-03-20 | VSIX
- Allow using workspace TS version. See below for details. #682.
- Switch PostCSS grammar to base on hudochenkov/Syntax-highlighting-for-PostCSS. #1115.
- Fix a bug where Vetur does not update language features for newly created files. #1091.
- Use
text.jade.slm
instead oftext.pug.slm
for proper SLM syntax highlighting. #1134. - Fix a bug where Vetur fails to resolve links in
<script src="">
correctly. #991 and #1150. - Add Gridsome support. Thanks to contribution from @tyankatsu0105. #1101.
0.16.2
0.16.1
0.16.0
0.14.5
0.13.0
- Revert TS to 2.8.4, which is the same minor version as 0.12.6 release for perf issues. #913.
- prettyhtml support. Thanks to contribution from @StarpTech. #561 and #491.
- Default
unformatted
option to an empty array to accommodate js-beautify's new behavior. #921. - Fix a stylus formatting error when stylus code contains comments. Thanks to contribution from @ThisIsManta. #918.
- If local prettier exists in
node_modules
, prefer using it instead of bundled version of prettier. Thanks to contribution from @maeldur. #876.
0.12.6
0.12.1
0.11.8
0.11.8 | 2018-05-14
- Update TypeScript Version to allow usage of
!
for definite assignment assertions. - Add single quote as trigger character. Fix #743
- Add
arrowParens
option for Prettier - Upgrade vscode-emmet-helper. Fix #412. Fix #426
- Add
vetur.completion.useScaffoldSnippets
. Fix #698 - Skip template completion trigger in script. Fix #705
- Fix script definition lookup position error. Fix #741
- Add a crude file watcher. Now Vetur will pick up text change in TS/JS. Note this feature is experimental. Partially fix #355