@@ -675,7 +675,7 @@ export class TagsProcessor extends BaseProcessor {
675
675
const debuggers = doesContribute ( 'debuggers' ) ? [ 'debuggers' ] : [ ] ;
676
676
const json = doesContribute ( 'jsonValidation' ) ? [ 'json' ] : [ ] ;
677
677
const remoteMenu = doesContribute ( 'menus' , 'statusBar/remoteIndicator' ) ? [ 'remote-menu' ] : [ ] ;
678
- const chatParticipants = doesContribute ( 'chatParticipants' ) ? [ 'chat-participant' ] : [ ] ;
678
+ const chatParticipants = doesContribute ( 'chatParticipants' ) ? [ 'chat-participant' , 'copilot' ] : [ ] ;
679
679
680
680
const localizationContributions = ( ( contributes && contributes [ 'localizations' ] ) ?? [ ] ) . reduce < string [ ] > (
681
681
( r , l ) => [ ...r , `lp-${ l . languageId } ` , ...toLanguagePackTags ( l . translations , l . languageId ) ] ,
@@ -1636,7 +1636,7 @@ async function collectAllFiles(
1636
1636
cwd : string ,
1637
1637
dependencies : 'npm' | 'yarn' | 'none' | undefined ,
1638
1638
dependencyEntryPoints ?: string [ ] ,
1639
- followSymlinks :boolean = true
1639
+ followSymlinks : boolean = true
1640
1640
) : Promise < string [ ] > {
1641
1641
const deps = await getDependencies ( cwd , dependencies , dependencyEntryPoints ) ;
1642
1642
const promises = deps . map ( dep =>
@@ -1670,7 +1670,7 @@ function collectFiles(
1670
1670
ignoreFile ?: string ,
1671
1671
manifestFileIncludes ?: string [ ] ,
1672
1672
readmePath ?: string ,
1673
- followSymlinks :boolean = false
1673
+ followSymlinks : boolean = false
1674
1674
) : Promise < string [ ] > {
1675
1675
readmePath = readmePath ?? 'README.md' ;
1676
1676
const notIgnored = [ '!package.json' , `!${ readmePath } ` ] ;
0 commit comments