Skip to content

Commit

Permalink
Merge pull request #996 from chrislopresto/update-node-support
Browse files Browse the repository at this point in the history
Drop support for Node versions below v18
  • Loading branch information
bertdeblock authored Feb 29, 2024
2 parents 3bdd9ba + ddd064e commit e282795
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18
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
cache: yarn
- name: Install Dependencies
run: yarn install --no-lockfile
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To see Ember Freestyle in action, visit [https://chrislopresto.github.io/ember-f

* Ember.js v3.24 or above
* Ember CLI v3.24 or above
* Node.js v14 or above
* Node.js v18 or above
* Ember Auto Import v2 or above

ember-freestyle includes Typescript types and provides `addon/glint.ts` for Glint usage
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@
"@ember/string": "^3.1.1"
},
"engines": {
"node": "14.* || >= 16"
"node": ">= 18"
},
"volta": {
"node": "16.20.1",
"yarn": "1.22.19"
"node": "18.19.1",
"yarn": "1.22.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
Expand Down

0 comments on commit e282795

Please sign in to comment.