Skip to content

Commit

Permalink
chore(ember-try): test embroider only with ember 4+
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 5, 2021
1 parent 5927433 commit 2bf0722
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions testing/ember-app/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,28 @@ module.exports = async function () {
},
},
},
embroiderSafe(),
embroiderOptimized(),
embroiderSafe({
npm: {
dependencies: {
'ember-auto-import': '^2.0.0',
},
devDependencies: {
'ember-source': await getChannelURL('release'),
webpack: '^5.0.0',
},
},
}),
embroiderOptimized({
npm: {
dependencies: {
'ember-auto-import': '^2.0.0',
},
devDependencies: {
'ember-source': await getChannelURL('release'),
webpack: '^5.0.0',
},
},
}),
],
};
};

0 comments on commit 2bf0722

Please sign in to comment.