Skip to content

Commit 6eeaeb2

Browse files
authoredSep 17, 2021
feat: raise minimum version of Node to v14.17 (#248)
Co-authored-by: João Pedro Henrique <joao.pedro.hsd@gmail.com> BREAKING CHANGE: the minimum required version of node is now v14.17
1 parent 5d7a717 commit 6eeaeb2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
 

‎.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version:
16-
- 10
17-
- 12
18-
- 14
16+
- 14.17
17+
- 16
1918
os:
2019
- ubuntu-latest
2120
- macos-latest
@@ -28,6 +27,8 @@ jobs:
2827
with:
2928
node-version: "${{ matrix.node-version }}"
3029
cache: npm
30+
- name: Ensure dependencies are compatible with the version of node
31+
run: echo 'engine-strict=true' >> .npmrc
3132
- run: npm ci
3233
- run: "npm run test:ci"
3334
test:

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"xo": "0.28.3"
3939
},
4040
"engines": {
41-
"node": ">=10.18"
41+
"node": ">=14.17"
4242
},
4343
"files": [
4444
"lib",
@@ -70,7 +70,7 @@
7070
"all": true
7171
},
7272
"peerDependencies": {
73-
"semantic-release": ">=16.0.0 <18.0.0"
73+
"semantic-release": ">=18.0.0-beta.1"
7474
},
7575
"prettier": {
7676
"printWidth": 120,

0 commit comments

Comments
 (0)
Please sign in to comment.