Skip to content

Commit 7e86642

Browse files
committed
Expand ember-source peerDep versions and drop node 16.
1 parent 15320e9 commit 7e86642

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 16.x
25+
node-version: 18.x
2626
cache: yarn
2727
- name: Install Dependencies
2828
run: yarn install --frozen-lockfile
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-node@v3
4242
with:
43-
node-version: 16.x
43+
node-version: 18.x
4444
cache: yarn
4545
- name: Install Dependencies
4646
run: yarn install --no-lockfile
@@ -60,6 +60,7 @@ jobs:
6060
- ember-lts-3.28
6161
- ember-lts-4.4
6262
- ember-lts-4.8
63+
- ember-lts-5.4
6364
- ember-release
6465
- ember-beta
6566
- ember-canary
@@ -72,7 +73,7 @@ jobs:
7273
- name: Install Node
7374
uses: actions/setup-node@v3
7475
with:
75-
node-version: 16.x
76+
node-version: 18.x
7677
cache: yarn
7778
- name: Install Dependencies
7879
run: yarn install --frozen-lockfile

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-this-fallback",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "The default blueprint for ember-cli addons.",
55
"keywords": [
66
"ember-addon"
@@ -108,10 +108,10 @@
108108
},
109109
"peerDependencies": {
110110
"ember-cli-htmlbars": "^6.2.0",
111-
"ember-source": "^3.28.11 || ^4.0.0"
111+
"ember-source": "^3.28.11 || ^4.0.0 || ^5.0.0"
112112
},
113113
"engines": {
114-
"node": "16.* || >= 18"
114+
"node": ">= 18"
115115
},
116116
"publishConfig": {
117117
"registry": "https://registry.npmjs.org"

tests/dummy/config/ember-try.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ module.exports = async function () {
5757
},
5858
},
5959
},
60+
{
61+
name: 'ember-lts-5.4',
62+
npm: {
63+
devDependencies: {
64+
'ember-source': '~5.4.0',
65+
},
66+
},
67+
},
6068
{
6169
name: 'ember-release',
6270
npm: {

0 commit comments

Comments
 (0)