@vscode/vsce 3.3.3-1 → 3.3.3-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/package.js +2 -0
- package/package.json +1 -1
package/out/package.js
CHANGED
|
@@ -420,6 +420,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
420
420
|
const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
|
|
421
421
|
const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant'] : [];
|
|
422
422
|
const languageModelTools = doesContribute('languageModelTools') ? ['tools', 'language-model-tools'] : [];
|
|
423
|
+
const mcp = doesContribute('modelContextServerCollections') ? ['mcp'] : [];
|
|
423
424
|
const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
|
|
424
425
|
const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []), ...toExtensionTags(l.extensions ?? [])], []);
|
|
425
426
|
const languageActivations = activationEvents
|
|
@@ -443,6 +444,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
443
444
|
...remoteMenu,
|
|
444
445
|
...chatParticipants,
|
|
445
446
|
...languageModelTools,
|
|
447
|
+
...mcp,
|
|
446
448
|
...localizationContributions,
|
|
447
449
|
...languageContributions,
|
|
448
450
|
...languageActivations,
|