Skip to content

Commit

Permalink
raise minimum node version to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Treffenstädt committed Aug 4, 2023
1 parent b6c0531 commit 9ae04b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16, 18, 20]
node: [18, 20]
os: [ubuntu-latest, windows-latest]

name: Node ${{ matrix.node }} on ${{ matrix.os }}
Expand All @@ -24,7 +24,7 @@ jobs:
# frequently hangs for whatever reason,
# and we have no platform-specific code anyway…
- name: upload coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 18
if: matrix.os == 'ubuntu-latest' && matrix.node == 20
timeout-minutes: 1
continue-on-error: true
run: bash <(curl -s https://codecov.io/bash) -t ${{secrets.CODECOV_TOKEN}} -B ${{ github.ref }} -f coverage/coverage-final.json
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

**Compatibility Notice**:

This release raises the minimum required TypeScript version to **4.5** and the minimum required node.js version to **16**.
This release raises the minimum required TypeScript version to **4.5** and the minimum required node.js version to **18**.

**Fixes**:

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"homepage": "https://github.com/Swatinem/rollup-plugin-dts#readme",
"engines": {
"node": ">=v16.20.1"
"node": ">=v18.16.0"
},
"type": "module",
"main": "./dist/rollup-plugin-dts.cjs",
Expand Down

0 comments on commit 9ae04b8

Please sign in to comment.