Skip to content

Commit

Permalink
Merge pull request #47 from mizdra/drop-node-16
Browse files Browse the repository at this point in the history
Drop Node.js v16
  • Loading branch information
mizdra authored Dec 8, 2024
2 parents 9e46e80 + de93773 commit 5070b6b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16, 18, 20]
node: [18, 20, 22]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"vitest": "^2.1.8"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
1 change: 0 additions & 1 deletion src/error.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export class AppOptionValidationError extends Error {
// eslint-disable-next-line n/no-unsupported-features/es-syntax -- TODO: Drop Node.js 16
static {
this.prototype.name = 'AppOptionValidationError';
}
Expand Down

0 comments on commit 5070b6b

Please sign in to comment.