Skip to content

Commit

Permalink
Merge pull request #718 from mkszepp/update-ember-try
Browse files Browse the repository at this point in the history
Remove `ember-cli-htmlbars` workaround in ember-try
  • Loading branch information
mkszepp authored Nov 13, 2023
2 parents 783c8bc + f62e7b3 commit bc81184
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@
const getChannelURL = require('ember-source-channel-url');
const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup');

const embroiderSafeScenario = embroiderSafe();
embroiderSafeScenario.npm.dependencies = {
'ember-cli-htmlbars': '^5.3.2',
};

const embroiderOptimizedScenario = embroiderOptimized();
embroiderOptimizedScenario.npm.dependencies = {
'ember-cli-htmlbars': '^5.3.2',
};

module.exports = async function () {
return {
scenarios: [
Expand Down Expand Up @@ -82,8 +72,8 @@ module.exports = async function () {
},
},
},
embroiderSafeScenario,
embroiderOptimizedScenario,
embroiderSafe(),
embroiderOptimized(),
],
};
};

0 comments on commit bc81184

Please sign in to comment.