We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8efa5e commit e6add91Copy full SHA for e6add91
src/shared/functions.ts
@@ -19,7 +19,8 @@ export const getKeyFromObject = (element: RemoteChangeElement | ChangeResult): s
19
throw new Error(`unable to complete key from ${JSON.stringify(element)}`);
20
};
21
22
-export const isBundle = (cmp: SourceComponent): boolean => cmp.type.strategies?.adapter === 'bundle';
+export const isBundle = (cmp: SourceComponent): boolean =>
23
+cmp.type.strategies?.adapter === 'bundle' || cmp.type.strategies?.adapter === 'digitalExperience';
24
export const isLwcLocalOnlyTest = (filePath: string): boolean =>
25
filePath.includes('__utam__') || filePath.includes('__tests__');
26
0 commit comments