Skip to content

Commit

Permalink
[BREAKING] Drop support for node < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemelia committed Nov 28, 2023
1 parent 5b59a4f commit 76eefd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Run the following command in your terminal:
ember install ember-cli-deploy-smart-compress
```

Note that this addon requires at least node.js 14!
Note that this addon requires at least node.js 16!

## ember-cli-deploy Hooks Implemented

Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
"rimraf": "^2.3.4"
},
"engines": {
"npm": "9.7.1",
"node": "14.* || 16.* || 18.* || >= 20.*"
"node": "16.* || 18.* || >= 20.*"
},
"publishConfig": {
"access": "public",
Expand Down

0 comments on commit 76eefd5

Please sign in to comment.