Skip to content

Commit

Permalink
fix ember-try scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov committed Sep 25, 2024
1 parent 84ce9b1 commit 653f59b
Show file tree
Hide file tree
Showing 3 changed files with 1,002 additions and 2,380 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-lts-4.8
- ember-lts-5.8
- fastboot-1.2
- fastboot-2.0
- fastboot-3.0
Expand Down
24 changes: 24 additions & 0 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = async function () {
name: 'ember-lts-3.28',
npm: {
devDependencies: {
'ember-cli': '~4.12.0',
'ember-source': '~3.28.0',
},
},
Expand Down Expand Up @@ -62,10 +63,18 @@ module.exports = async function () {
fastboot: '~1.2.1',
},
devDependencies: {
'@ember/test-helpers': '^2.9.3',
'ember-cli': '~4.12.0',
'ember-source': '~3.20.7',
'ember-data': '~3.20.5',
'ember-qunit': '^5.1.5',
},
// ember-cli-fastboot v3 incorrectly passed args to json-stable-stringify
// which results in TypeError in latest versions of json-stable-stringify,
// hence pinning.
resolutions: {
'json-stable-stringify': '1.0.2',
},
},
},
{
Expand All @@ -75,11 +84,19 @@ module.exports = async function () {
fastboot: '~2.0.3',
},
devDependencies: {
'@ember/test-helpers': '^2.9.3',
'ember-cli': '~4.12.0',
'ember-cli-fastboot': '^2.0.0',
'ember-data': '~3.20.5',
'ember-qunit': '^5.1.5',
'ember-source': '~3.20.7',
},
// ember-cli-fastboot v3 incorrectly passed args to json-stable-stringify
// which results in TypeError in latest versions of json-stable-stringify,
// hence pinning.
resolutions: {
'json-stable-stringify': '1.0.2',
},
},
},
{
Expand All @@ -90,6 +107,13 @@ module.exports = async function () {
},
devDependencies: {
'ember-cli-fastboot': '^3.0.0',
'ember-source': '~4.12.0',
},
// ember-cli-fastboot v3 incorrectly passed args to json-stable-stringify
// which results in TypeError in latest versions of json-stable-stringify,
// hence pinning.
resolutions: {
'json-stable-stringify': '1.0.2',
},
},
},
Expand Down
Loading

0 comments on commit 653f59b

Please sign in to comment.