Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions packages/compat/src/compat-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,9 @@ export default class CompatApp {
// them there, so @embroider/compat will fill in defaults. The bundles are
// empty because we're just trying to keep the build from blowing up, the
// actual ember modules get loaded as modules instead.
//
// The template compiler is still here so that apps using a V2 ember can
// still app.import the traditional runtime template compiler.
trees.push(writeFile('vendor/ember/ember.js', () => ''));
trees.push(writeFile('vendor/ember/ember-testing.js', () => ''));
const templateCompilerSrc = readFileSync(join(emberSource.root, 'dist/ember-template-compiler.js'), 'utf8');
trees.push(writeFile('vendor/ember/ember-template-compiler.js', () => templateCompilerSrc));
trees.push(writeFile('vendor/ember/ember-template-compiler.js', () => ''));
}

if (this.vendorTree) {
Expand Down