We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e04128 commit 5cefcf4Copy full SHA for 5cefcf4
1 file changed
lib/index.js
@@ -18,7 +18,7 @@ async function runForPath(path, options = {}) {
18
let log = options.log || console.log;
19
20
log(` 🔍 Searching for component files...`);
21
- let paths = await globby('app/components/**/*.js', { cwd: path });
+ let paths = await globby(['app/components/**/*.js', 'addon/components/**/*.js'], { cwd: path });
22
debug('componentPaths = %O', paths);
23
24
let pkgContent = fs.readFileSync(`${path}/package.json`);
0 commit comments