We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25703bd + 924385e commit 3f54024Copy full SHA for 3f54024
1 file changed
packages/ember-cli-fastboot/index.js
@@ -184,7 +184,8 @@ module.exports = {
184
this._processAddons(this.project.addons, fastbootTrees);
185
// check the parent containing the fastboot directory
186
const projectFastbootPath = path.join(this.project.root, 'fastboot');
187
- if (this.existsSync(projectFastbootPath)) {
+ // ignore the project's fastboot folder if we are an addon, as that is already handled above
188
+ if (!this.project.isEmberCLIAddon() && this.existsSync(projectFastbootPath)) {
189
let fastbootTree = this.treeGenerator(projectFastbootPath);
190
fastbootTrees.push(fastbootTree);
191
}
0 commit comments