Skip to content

Commit

Permalink
fix: skip babel for qunit package when using embroider
Browse files Browse the repository at this point in the history
This fixes the issue outlined in embroider-build/embroider#677
  • Loading branch information
pangratz committed May 17, 2021
1 parent df2d97f commit 6998d26
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,11 @@ module.exports = function (defaults) {
*/

const { maybeEmbroider } = require('@embroider/test-setup');
return maybeEmbroider(app);
return maybeEmbroider(app, {
skipBabel: [
{
package: 'qunit',
},
],
});
};

0 comments on commit 6998d26

Please sign in to comment.