@vscode/vsce 3.2.3-2 → 3.2.3-3

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.
Files changed (2) hide show
  1. package/out/package.js +3 -3
  2. package/package.json +1 -1
package/out/package.js CHANGED
@@ -428,8 +428,8 @@ class TagsProcessor extends BaseProcessor {
428
428
  const debuggers = doesContribute('debuggers') ? ['debuggers'] : [];
429
429
  const json = doesContribute('jsonValidation') ? ['json'] : [];
430
430
  const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
431
- const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant', 'github-copilot'] : [];
432
- const languageModelTool = doesContribute('languageModelTool') ? ['tools', 'github-copilot'] : [];
431
+ const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant'] : [];
432
+ const languageModelTools = doesContribute('languageModelTools') ? ['tools'] : [];
433
433
  const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
434
434
  const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []), ...toExtensionTags(l.extensions ?? [])], []);
435
435
  const languageActivations = activationEvents
@@ -452,7 +452,7 @@ class TagsProcessor extends BaseProcessor {
452
452
  ...json,
453
453
  ...remoteMenu,
454
454
  ...chatParticipants,
455
- ...languageModelTool,
455
+ ...languageModelTools,
456
456
  ...localizationContributions,
457
457
  ...languageContributions,
458
458
  ...languageActivations,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vsce",
3
- "version": "3.2.3-2",
3
+ "version": "3.2.3-3",
4
4
  "description": "VS Code Extensions Manager",
5
5
  "repository": {
6
6
  "type": "git",