Skip to content

Commit

Permalink
Merge pull request #686 from embroider-build/duplicate-babel-plugins
Browse files Browse the repository at this point in the history
accidental duplication of babel plugin list
  • Loading branch information
ef4 authored Feb 9, 2021
2 parents 1410ea2 + bc6b28c commit 0349de7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class AppBuilder<TreeNames> {

@Memoize()
private babelConfig(templateCompilerParams: TemplateCompilerParams, appFiles: Engine[]) {
let babel = this.adapter.babelConfig();
let babel = cloneDeep(this.adapter.babelConfig());

if (!babel.plugins) {
babel.plugins = [];
Expand Down

0 comments on commit 0349de7

Please sign in to comment.