@vscode/vsce 2.28.0 → 2.29.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.
Files changed (2) hide show
  1. package/out/package.js +2 -0
  2. package/package.json +1 -1
package/out/package.js CHANGED
@@ -351,6 +351,7 @@ class ManifestProcessor extends BaseProcessor {
351
351
  .map(loc => loc.localizedLanguageName ?? loc.languageName ?? loc.languageId)
352
352
  .join(',')
353
353
  : '',
354
+ enabledApiProposals: manifest.enabledApiProposals ? manifest.enabledApiProposals.join(',') : '',
354
355
  preRelease: !!this.options.preRelease,
355
356
  sponsorLink: manifest.sponsor?.url || '',
356
357
  };
@@ -1061,6 +1062,7 @@ async function toVsixManifest(vsix) {
1061
1062
  <Property Id="Microsoft.VisualStudio.Code.ExtensionPack" Value="${escape(vsix.extensionPack)}" />
1062
1063
  <Property Id="Microsoft.VisualStudio.Code.ExtensionKind" Value="${escape(vsix.extensionKind)}" />
1063
1064
  <Property Id="Microsoft.VisualStudio.Code.LocalizedLanguages" Value="${escape(vsix.localizedLanguages)}" />
1065
+ <Property Id="Microsoft.VisualStudio.Code.EnabledApiProposals" Value="${escape(vsix.enabledApiProposals)}" />
1064
1066
  ${vsix.preRelease ? `<Property Id="Microsoft.VisualStudio.Code.PreRelease" Value="${escape(vsix.preRelease)}" />` : ''}
1065
1067
  ${vsix.sponsorLink
1066
1068
  ? `<Property Id="Microsoft.VisualStudio.Code.SponsorLink" Value="${escape(vsix.sponsorLink)}" />`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vsce",
3
- "version": "2.28.0",
3
+ "version": "2.29.0",
4
4
  "description": "VS Code Extensions Manager",
5
5
  "repository": {
6
6
  "type": "git",