@@ -316,7 +316,6 @@ function isHostTrusted(url: url.URL): boolean {
316
316
317
317
export const Targets = new Set ( [
318
318
'win32-x64' ,
319
- 'win32-ia32' ,
320
319
'win32-arm64' ,
321
320
'linux-x64' ,
322
321
'linux-arm64' ,
@@ -329,7 +328,10 @@ export const Targets = new Set([
329
328
] )
330
329
331
330
class ManifestProcessor extends BaseProcessor {
332
- constructor ( manifest : Manifest , private readonly options : IPackageOptions = { } ) {
331
+ constructor (
332
+ manifest : Manifest ,
333
+ private readonly options : IPackageOptions = { } ,
334
+ ) {
333
335
super ( manifest )
334
336
335
337
const flags = [ 'Public' ]
@@ -709,7 +711,7 @@ class MarkdownProcessor extends BaseProcessor {
709
711
710
712
if ( ownerAndRepositoryName ) {
711
713
// prettier-ignore
712
- [ owner , repositoryName ] = ownerAndRepositoryName . split ( '/' , 2 )
714
+ ; [ owner , repositoryName ] = ownerAndRepositoryName . split ( '/' , 2 )
713
715
}
714
716
715
717
if ( owner && repositoryName && issueNumber ) {
@@ -980,8 +982,8 @@ function getExtensionKind(manifest: Manifest): ExtensionKind[] {
980
982
const result : ExtensionKind [ ] = Array . isArray ( manifest . extensionKind )
981
983
? manifest . extensionKind
982
984
: manifest . extensionKind === 'ui'
983
- ? [ 'ui' , 'workspace' ]
984
- : [ manifest . extensionKind ]
985
+ ? [ 'ui' , 'workspace' ]
986
+ : [ manifest . extensionKind ]
985
987
986
988
// Add web kind if the extension can run as web extension
987
989
if ( deduced . includes ( 'web' ) && ! result . includes ( 'web' ) ) {
@@ -1127,8 +1129,8 @@ async function toVsixManifest(vsix: VSIX): Promise<string> {
1127
1129
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
1128
1130
<Metadata>
1129
1131
<Identity Language="en-US" Id="${ escape ( vsix . id ) } " Version="${ escape ( vsix . version ) } " Publisher="${ escape (
1130
- vsix . publisher ,
1131
- ) } " ${ vsix . target ? `TargetPlatform="${ escape ( vsix . target ) } "` : '' } />
1132
+ vsix . publisher ,
1133
+ ) } " ${ vsix . target ? `TargetPlatform="${ escape ( vsix . target ) } "` : '' } />
1132
1134
<DisplayName>${ escape ( vsix . displayName ) } </DisplayName>
1133
1135
<Description xml:space="preserve">${ escape ( vsix . description ) } </Description>
1134
1136
<Tags>${ escape ( vsix . tags ) } </Tags>
0 commit comments