We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec89269 commit ff3af26Copy full SHA for ff3af26
index.js
@@ -29,7 +29,7 @@ module.exports = {
29
shouldIncludeChildAddon(addon) {
30
// For testing, we have dummy in-repo addons set up, but e-c-ts doesn't depend on them;
31
// its dummy app does. Otherwise we'd have a circular dependency.
32
- return addon.name !== 'in-repo-a' && addon.name !== 'in-repo-b';
+ return !['in-repo-a', 'in-repo-b', 'in-repo-c'].includes(addon.name);
33
},
34
35
setupPreprocessorRegistry(type, registry) {
0 commit comments