@vscode/vsce 3.5.1-0 → 3.5.1-1

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 +2 -0
  2. package/package.json +1 -1
package/out/package.js CHANGED
@@ -421,6 +421,7 @@ class TagsProcessor extends BaseProcessor {
421
421
  const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
422
422
  const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant'] : [];
423
423
  const languageModelTools = doesContribute('languageModelTools') ? ['tools', 'language-model-tools'] : [];
424
+ const languageModels = doesContribute('languageModels') ? ['language-models'] : [];
424
425
  const mcp = doesContribute('modelContextServerCollections') ? ['mcp', 'language-model-tools'] : [];
425
426
  const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
426
427
  const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []), ...toExtensionTags(l.extensions ?? [])], []);
@@ -445,6 +446,7 @@ class TagsProcessor extends BaseProcessor {
445
446
  ...remoteMenu,
446
447
  ...chatParticipants,
447
448
  ...languageModelTools,
449
+ ...languageModels,
448
450
  ...mcp,
449
451
  ...localizationContributions,
450
452
  ...languageContributions,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vsce",
3
- "version": "3.5.1-0",
3
+ "version": "3.5.1-1",
4
4
  "description": "VS Code Extensions Manager",
5
5
  "repository": {
6
6
  "type": "git",