Skip to content

Commit

Permalink
Merge pull request #1580 from embroider-build/fix-composible-helpers
Browse files Browse the repository at this point in the history
stop ember-composable-helpers searching for babel configs
  • Loading branch information
mansona authored Aug 17, 2023
2 parents 2cbaf7c + a0ded6f commit cacd923
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ class MatchHelpers extends Funnel {
}
let src = readFileSync(join(this.inputPaths[0], 'index.js'), 'utf8');
let plugins = [stripBadReexportsPlugin({ resolveBase: this.outputPath })];
writeFileSync(join(this.outputPath, 'index.js'), transform(src, { plugins })!.code!);
writeFileSync(join(this.outputPath, 'index.js'), transform(src, { plugins, configFile: false })!.code!);
}
}

0 comments on commit cacd923

Please sign in to comment.