@vscode/vsce 3.2.3-1 → 3.2.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
|
@@ -429,6 +429,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
429
429
|
const json = doesContribute('jsonValidation') ? ['json'] : [];
|
|
430
430
|
const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
|
|
431
431
|
const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant', 'github-copilot'] : [];
|
|
432
|
+
const languageModelTool = doesContribute('languageModelTool') ? ['tools', 'github-copilot'] : [];
|
|
432
433
|
const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
|
|
433
434
|
const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []), ...toExtensionTags(l.extensions ?? [])], []);
|
|
434
435
|
const languageActivations = activationEvents
|
|
@@ -451,6 +452,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
451
452
|
...json,
|
|
452
453
|
...remoteMenu,
|
|
453
454
|
...chatParticipants,
|
|
455
|
+
...languageModelTool,
|
|
454
456
|
...localizationContributions,
|
|
455
457
|
...languageContributions,
|
|
456
458
|
...languageActivations,
|