Skip to content

Releases: vuejs/vetur

0.17.0

20 Mar 22:23
Compare
Choose a tag to compare

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 of text.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

21 Feb 01:37
Compare
Choose a tag to compare

0.16.2 | 2019-02-20 | VSIX

  • Prettier as an option for vetur.format.defaultFormatter.html. #950.
  • Fix a syntax highlighting bug with custom block that begins with <template>. #1088.
  • Fix a bug where Vetur fails to provide props completion when using "vetur.completion.tagCasing": "initial". #1102.

0.16.1

18 Feb 22:51
Compare
Choose a tag to compare

vetur.completion.tagCasing option.

0.16.0

18 Feb 21:18
Compare
Choose a tag to compare

Template tag/attribute completion for child components and interpolation completion.

0.14.5

02 Jan 23:10
Compare
Choose a tag to compare
v0.14.5

0.14.5

0.13.0

04 Oct 19:07
Compare
Choose a tag to compare
  • 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

26 Sep 05:33
Compare
Choose a tag to compare
v0.12.6

0.12.6

0.12.1

15 May 06:12
Compare
Choose a tag to compare

0.12.1 | 2018-05-14

  • Haml syntax highlighting. #739.
  • Remove restricted file schemes for live share.
  • Fix an issue where Vetur failed to read emmet configs and cause emmet and other completions to fail.

0.11.8

14 May 17:25
Compare
Choose a tag to compare

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