Skip to content

Commit

Permalink
feat: drop support for Node.js v18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node.js v18 is no longer officially supported.
  • Loading branch information
robertrossmann committed Jan 13, 2025
1 parent dbfe39c commit dc3ec65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- macos-15
- windows-2022
node:
- 18
- 20
- 22
- 23
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 @@ -31,7 +31,7 @@
"typescript": "^5.7.3"
},
"engines": {
"node": "^18 || ^20 || ^22 || ^23"
"node": "^20 || ^22 || ^23"
},
"homepage": "https://github.com/strvcom/heimdall",
"keywords": [],
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"incremental": true,
"noEmitOnError": true,
"tsBuildInfoFile": ".buildstate/tsconfig.tsbuildinfo",
"target": "ES2019",
"module": "commonjs",
"target": "ES2022",
"module": "NodeNext",
"declaration": true,
"declarationMap": true,
"inlineSourceMap": true,
Expand Down

0 comments on commit dc3ec65

Please sign in to comment.