We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7efd3a2 + 8885748 commit 023c41bCopy full SHA for 023c41b
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