Skip to content

Commit a31877f

Browse files
committed
Fix missing merge of app-lt-2-10 for new FastBoot build
1 parent 3b2ae51 commit a31877f

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ module.exports = {
2222

2323
return filterInitializers(tree);
2424
} else {
25-
return defaultTree;
25+
let trees = [defaultTree];
26+
if (!this.hasGlimmer2()) {
27+
trees.push(this.treeGenerator(path.resolve(this.root, 'app-lt-2-10')));
28+
}
29+
30+
return mergeTrees(trees, { overwrite: true });
2631
}
2732
},
2833

0 commit comments

Comments
 (0)