Skip to content

Commit

Permalink
Add support for ember-cli-babel v8 (#1213)
Browse files Browse the repository at this point in the history
  • Loading branch information
bertdeblock authored Oct 31, 2023
1 parent 121259a commit 70cdb83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module.exports = {
appOrParent.options.babel6.plugins.push(
require.resolve('./strip-data-test-properties-plugin6')
);
} else if (checker.satisfies('^7.0.0')) {
} else if (checker.satisfies('^7.0.0') || checker.satisfies('^8.0.0')) {
appOrParent.options.babel = appOrParent.options.babel || {};
appOrParent.options.babel.plugins = appOrParent.options.babel.plugins || [];
appOrParent.options.babel.plugins.push(
Expand Down

0 comments on commit 70cdb83

Please sign in to comment.