We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4441a0a commit 2d40b2eCopy full SHA for 2d40b2e
src/shared/remoteSourceTrackingService.ts
@@ -416,7 +416,7 @@ export class RemoteSourceTrackingService extends ConfigFile<RemoteSourceTracking
416
// if a listView is the only change inside an object, the object won't have a sourceMember change. We won't wait for those to be found
417
fileResponse.type !== 'CustomObject' &&
418
// aura meta.xml aren't tracked as SourceMembers
419
- !(fileResponse.filePath?.includes('AuraDefinition') && fileResponse.filePath?.endsWith('.cmp-meta.xml'))
+ !fileResponse.filePath?.endsWith('.cmp-meta.xml')
420
)
421
.map((member) => {
422
getMetadataKeyFromFileResponse(member).map((key) => outstandingSourceMembers.set(key, member));
0 commit comments