@vscode/vsce 3.6.1-9 → 3.6.2-0
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 +1 -1
- package/package.json +1 -1
package/out/package.js
CHANGED
|
@@ -425,7 +425,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
425
425
|
const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
|
|
426
426
|
const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant'] : [];
|
|
427
427
|
const languageModelTools = doesContribute('languageModelTools') ? ['tools', 'language-model-tools'] : [];
|
|
428
|
-
const languageModels = doesContribute('
|
|
428
|
+
const languageModels = doesContribute('languageModelChatProviders') ? ['language-models'] : [];
|
|
429
429
|
const mcp = doesContribute('modelContextServerCollections') ? ['mcp', 'language-model-tools'] : [];
|
|
430
430
|
const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
|
|
431
431
|
const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []).map(sanitizeTag), ...toExtensionTags(l.extensions ?? [])], []);
|