Skip to content

Commit dc3ec65

Browse files
feat: drop support for Node.js v18
BREAKING CHANGE: Node.js v18 is no longer officially supported.
1 parent dbfe39c commit dc3ec65

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/integration.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
- macos-15
1515
- windows-2022
1616
node:
17-
- 18
1817
- 20
1918
- 22
2019
- 23

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"typescript": "^5.7.3"
3232
},
3333
"engines": {
34-
"node": "^18 || ^20 || ^22 || ^23"
34+
"node": "^20 || ^22 || ^23"
3535
},
3636
"homepage": "https://github.com/strvcom/heimdall",
3737
"keywords": [],

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"incremental": true,
44
"noEmitOnError": true,
55
"tsBuildInfoFile": ".buildstate/tsconfig.tsbuildinfo",
6-
"target": "ES2019",
7-
"module": "commonjs",
6+
"target": "ES2022",
7+
"module": "NodeNext",
88
"declaration": true,
99
"declarationMap": true,
1010
"inlineSourceMap": true,

0 commit comments

Comments
 (0)