Skip to content

Commit

Permalink
feat(node-version): raised the minimum required version to v14.17 (#387)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: the minimum required version of node is now v14.17
  • Loading branch information
travi committed Aug 30, 2021
1 parent b26b6e9 commit f78e383
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 90 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -13,9 +13,8 @@ jobs:
strategy:
matrix:
node-version:
- 10
- 12
- 14
- 14.17
- 16
os:
- ubuntu-latest
runs-on: "${{ matrix.os }}"
Expand All @@ -38,4 +37,6 @@ jobs:
node-version: 16
cache: npm
- run: npm ci
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines
- run: npm run lint
168 changes: 84 additions & 84 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -41,13 +41,13 @@
"got": "11.8.2",
"nyc": "15.1.0",
"p-retry": "4.4.0",
"semantic-release": "17.3.9",
"semantic-release": "^18.0.0-beta.3",
"sinon": "9.2.4",
"stream-buffers": "3.0.2",
"xo": "0.36.1"
},
"engines": {
"node": ">=10.19"
"node": ">=14.17"
},
"files": [
"lib",
Expand Down Expand Up @@ -76,7 +76,7 @@
"all": true
},
"peerDependencies": {
"semantic-release": ">=16.0.0 <18.0.0"
"semantic-release": ">=18.0.0-beta.1"
},
"prettier": {
"printWidth": 120,
Expand Down

0 comments on commit f78e383

Please sign in to comment.