@vscode/vsce 3.3.3-0 → 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 -10
- package/package.json +1 -1
package/out/package.js
CHANGED
|
@@ -148,19 +148,14 @@ function toLanguagePackTags(translations, languageId) {
|
|
|
148
148
|
* Remember to reach out to them when adding new domains.
|
|
149
149
|
*/
|
|
150
150
|
const TrustedSVGSources = [
|
|
151
|
-
'api.bintray.com',
|
|
152
151
|
'api.travis-ci.com',
|
|
153
|
-
'api.travis-ci.org',
|
|
154
152
|
'app.fossa.io',
|
|
155
153
|
'badge.buildkite.com',
|
|
156
154
|
'badge.fury.io',
|
|
157
|
-
'badge.waffle.io',
|
|
158
155
|
'badgen.net',
|
|
159
156
|
'badges.frapsoft.com',
|
|
160
157
|
'badges.gitter.im',
|
|
161
|
-
'badges.greenkeeper.io',
|
|
162
158
|
'cdn.travis-ci.com',
|
|
163
|
-
'cdn.travis-ci.org',
|
|
164
159
|
'ci.appveyor.com',
|
|
165
160
|
'circleci.com',
|
|
166
161
|
'cla.opensource.microsoft.com',
|
|
@@ -173,8 +168,6 @@ const TrustedSVGSources = [
|
|
|
173
168
|
'dev.azure.com',
|
|
174
169
|
'docs.rs',
|
|
175
170
|
'flat.badgen.net',
|
|
176
|
-
'gemnasium.com',
|
|
177
|
-
'githost.io',
|
|
178
171
|
'gitlab.com',
|
|
179
172
|
'godoc.org',
|
|
180
173
|
'goreportcard.com',
|
|
@@ -185,11 +178,8 @@ const TrustedSVGSources = [
|
|
|
185
178
|
'opencollective.com',
|
|
186
179
|
'snyk.io',
|
|
187
180
|
'travis-ci.com',
|
|
188
|
-
'travis-ci.org',
|
|
189
181
|
'visualstudio.com',
|
|
190
182
|
'vsmarketplacebadges.dev',
|
|
191
|
-
'www.bithound.io',
|
|
192
|
-
'www.versioneye.com',
|
|
193
183
|
];
|
|
194
184
|
function isGitHubRepository(repository) {
|
|
195
185
|
return /^https:\/\/github\.com\/|^git@github\.com:/.test(repository ?? '');
|
|
@@ -430,6 +420,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
430
420
|
const remoteMenu = doesContribute('menus', 'statusBar/remoteIndicator') ? ['remote-menu'] : [];
|
|
431
421
|
const chatParticipants = doesContribute('chatParticipants') ? ['chat-participant'] : [];
|
|
432
422
|
const languageModelTools = doesContribute('languageModelTools') ? ['tools', 'language-model-tools'] : [];
|
|
423
|
+
const mcp = doesContribute('modelContextServerCollections') ? ['mcp'] : [];
|
|
433
424
|
const localizationContributions = ((contributes && contributes['localizations']) ?? []).reduce((r, l) => [...r, `lp-${l.languageId}`, ...toLanguagePackTags(l.translations, l.languageId)], []);
|
|
434
425
|
const languageContributions = ((contributes && contributes['languages']) ?? []).reduce((r, l) => [...r, l.id, ...(l.aliases ?? []), ...toExtensionTags(l.extensions ?? [])], []);
|
|
435
426
|
const languageActivations = activationEvents
|
|
@@ -453,6 +444,7 @@ class TagsProcessor extends BaseProcessor {
|
|
|
453
444
|
...remoteMenu,
|
|
454
445
|
...chatParticipants,
|
|
455
446
|
...languageModelTools,
|
|
447
|
+
...mcp,
|
|
456
448
|
...localizationContributions,
|
|
457
449
|
...languageContributions,
|
|
458
450
|
...languageActivations,
|