Skip to content

Commit

Permalink
Expand ember-source peerDep versions and drop node 16.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaylorhq committed Apr 10, 2024
1 parent 15320e9 commit 7e86642
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install --no-lockfile
Expand All @@ -60,6 +60,7 @@ jobs:
- ember-lts-3.28
- ember-lts-4.4
- ember-lts-4.8
- ember-lts-5.4
- ember-release
- ember-beta
- ember-canary
Expand All @@ -72,7 +73,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "ember-this-fallback",
"version": "0.4.0",
"version": "0.4.1",
"description": "The default blueprint for ember-cli addons.",
"keywords": [
"ember-addon"
Expand Down Expand Up @@ -108,10 +108,10 @@
},
"peerDependencies": {
"ember-cli-htmlbars": "^6.2.0",
"ember-source": "^3.28.11 || ^4.0.0"
"ember-source": "^3.28.11 || ^4.0.0 || ^5.0.0"
},
"engines": {
"node": "16.* || >= 18"
"node": ">= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down
8 changes: 8 additions & 0 deletions tests/dummy/config/ember-try.js
Expand Up @@ -57,6 +57,14 @@ module.exports = async function () {
},
},
},
{
name: 'ember-lts-5.4',
npm: {
devDependencies: {
'ember-source': '~5.4.0',
},
},
},
{
name: 'ember-release',
npm: {
Expand Down

0 comments on commit 7e86642

Please sign in to comment.