joelspadin-garmin / vscode-private-extension-manager

Private extension manager for Visual Studio Code
103 stars 22 forks source link

remove web extension kind #55

Closed sandy081 closed 3 years ago

sandy081 commented 3 years ago

Hi, this is developer from VS Code. As we are rolling out web extensions we are trying to fine tune and simplify the concepts around web extensions. As a result, we are no longer supporting web as an extension kind to identify as a web extension. Instead we infer it from other properties - See https://github.com/microsoft/vscode-docs/blob/vnext/api/extension-guides/web-extensions.md#web-extension-enablement for more details. With latest vsce, it will validate extension kind for appropriate values which are ui, workspace. Since this extension has web extension kind, this PR fixes it properly.

joelspadin-garmin commented 3 years ago

Thanks!