Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: tomjs/vite-plugin-vscode

v7.1.1

23 Jan 04:26

Choose a tag to compare

v7.1.0...v7.1.1

v7.1.0

19 Jan 13:42

Choose a tag to compare

  • feat: use codeSplitting for rolldownOptions #35 c28d31f

v7.0.0...v7.1.0

v7.0.0

11 Jan 15:45

Choose a tag to compare

  • docs: change readme 55fe07f
  • feat: change devtools default value to false b1f9aee
  • feat: disable vue template devtools 69a8c08
  • feat: devtools support custom port cf51169

v6.2.0...v7.0.0

v6.2.0

11 Jan 14:19

Choose a tag to compare

  • feat: extension build success log is displayed only once 3caf8a4
  • chore: update deps 832aa32
  • feat: support rolldown 3ab5e69

v6.1.0...v6.2.0

v6.1.0

03 Jan 05:31

Choose a tag to compare

  • feat: change env to types e373842

v6.0.2...v6.1.0

v6.0.2

02 Jan 07:22

Choose a tag to compare

v6.0.1...v6.0.2

v6.0.1

29 Dec 12:34

Choose a tag to compare

  • docs: delete the removed attributes 3d9d175

v6.0.0...v6.0.1

v6.0.0

29 Dec 12:27

Choose a tag to compare

Breaking Updates:

  • Change the global __getWebviewHtml__ method to a virtual module method called import { getWebviewHtml } from 'virtual:vscode';.

破坏性更新:

全局的 __getWebviewHtml__ 方法改为 import { getWebviewHtml } from 'virtual:vscode'; 这种虚拟模块方式调用。

before:

__getWebviewHtml__({
  // vite 开发模式
  serverUrl: process.env.VITE_DEV_SERVER_URL,
  // vite 生产模式
  webview,
  context,
});

after:

import { getWebviewHtml } from 'virtual:vscode';

getWebviewHtml({
  // vite 开发模式
  serverUrl: process.env.VITE_DEV_SERVER_URL,
  // vite 生产模式
  webview,
  context,
});

Change Logs

  • feat: change to virtual module f3cd745

v5.2.1...v6.0.0

v5.2.1

29 Dec 11:59

Choose a tag to compare

v5.1.0...v5.2.1

v5.1.0

29 Nov 18:27

Choose a tag to compare

v5.0.0...v5.1.0