We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4acc96 + 0e4deb6 commit ec5587cCopy full SHA for ec5587c
index.js
@@ -29,7 +29,12 @@ module.exports = {
29
postprocessTree(type, appTree) {
30
this._super.postprocessTree.apply(this, arguments);
31
let options = this._getOptions();
32
- let componentFilePathPatterns = options.componentFilePathPatterns || ['app/components/*.js', 'lib/**/addon/components/*.js'];
+
33
+ let componentFilePathPatterns = options.componentFilePathPatterns || [
34
+ 'app/components/*.js',
35
+ 'lib/**/addon/components/*.js',
36
+ 'addon/components/*.js',
37
+ ];
38
39
if (type !== 'all' || !options.enableAddonDocsIntegration) {
40
return appTree;
0 commit comments