Skip to content

Commit ff3af26

Browse files
committed
Filter out in-repo-c
1 parent ec89269 commit ff3af26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = {
2929
shouldIncludeChildAddon(addon) {
3030
// For testing, we have dummy in-repo addons set up, but e-c-ts doesn't depend on them;
3131
// its dummy app does. Otherwise we'd have a circular dependency.
32-
return addon.name !== 'in-repo-a' && addon.name !== 'in-repo-b';
32+
return !['in-repo-a', 'in-repo-b', 'in-repo-c'].includes(addon.name);
3333
},
3434

3535
setupPreprocessorRegistry(type, registry) {

0 commit comments

Comments
 (0)