@vscode/vsce 2.27.1-4 → 2.28.1-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.
- package/out/package.js +2 -0
- 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)}" />`
|