We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efd3a2 commit 8885748Copy full SHA for 8885748
src/package.ts
@@ -868,9 +868,9 @@ function deduceExtensionKinds(manifest: Manifest): ExtensionKind[] {
868
let result: ExtensionKind[] = ['ui', 'workspace', 'web'];
869
870
const isNonEmptyArray = obj => Array.isArray(obj) && obj.length > 0;
871
- // Extension pack defaults to workspace extensionKind
+ // Extension pack defaults to workspace,web extensionKind
872
if (isNonEmptyArray(manifest.extensionPack) || isNonEmptyArray(manifest.extensionDependencies)) {
873
- result = ['workspace'];
+ result = ['workspace', 'web'];
874
}
875
876
if (manifest.contributes) {
0 commit comments