Skip to content

Commit

Permalink
feat(ember): officially support ember v5
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed Mar 18, 2024
1 parent 2ef69fd commit c69ba5d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- ember-lts-4.4
- ember-lts-4.8
- ember-lts-4.12
- ember-lts-5.4
- ember-release
- ember-beta
- ember-canary
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"edition": "octane"
},
"peerDependencies": {
"ember-source": "^4.0.0"
"ember-source": ">= 4.0.0"
},
"ember-addon": {
"configPath": "tests/dummy/config",
Expand Down
24 changes: 7 additions & 17 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ module.exports = async function () {
"ember-source": "~4.4.0",
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
},
{
name: "ember-lts-4.8",
Expand All @@ -25,9 +22,6 @@ module.exports = async function () {
"ember-source": "~4.8.0",
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
},
{
name: "ember-lts-4.12",
Expand All @@ -36,8 +30,13 @@ module.exports = async function () {
"ember-source": "~4.12.0",
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
{
name: "ember-lts-5.4",
npm: {
devDependencies: {
"ember-source": "~5.4.0",
},
},
},
{
Expand All @@ -47,9 +46,6 @@ module.exports = async function () {
"ember-source": await getChannelURL("release"),
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
},
{
name: "ember-beta",
Expand All @@ -58,9 +54,6 @@ module.exports = async function () {
"ember-source": await getChannelURL("beta"),
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
},
{
name: "ember-canary",
Expand All @@ -69,9 +62,6 @@ module.exports = async function () {
"ember-source": await getChannelURL("canary"),
},
},
env: {
EMBROIDER_TEST_SETUP_FORCE: "classic",
},
},
embroiderSafe(),
embroiderOptimized(),
Expand Down

0 comments on commit c69ba5d

Please sign in to comment.