Skip to content

Commit 81728e1

Browse files
authored
Merge pull request #4 from ember-cli-deploy/drop-node-14
[BREAKING] Drop support for node < 16
2 parents 5b59a4f + 76eefd5 commit 81728e1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [14.x, 16.x, 18.x, 20.x]
13+
node-version: [16.x, 18.x, 20.x]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
node-version: [14.x, 16.x, 18.x, 20.x]
29+
node-version: [16.x, 18.x, 20.x]
3030
steps:
3131
- uses: actions/checkout@v2
3232
- name: Use Node.js ${{ matrix.node-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Run the following command in your terminal:
2121
ember install ember-cli-deploy-smart-compress
2222
```
2323

24-
Note that this addon requires at least node.js 14!
24+
Note that this addon requires at least node.js 16!
2525

2626
## ember-cli-deploy Hooks Implemented
2727

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@
4242
"rimraf": "^2.3.4"
4343
},
4444
"engines": {
45-
"npm": "9.7.1",
46-
"node": "14.* || 16.* || 18.* || >= 20.*"
45+
"node": "16.* || 18.* || >= 20.*"
4746
},
4847
"publishConfig": {
4948
"access": "public",

0 commit comments

Comments
 (0)