Skip to content

Commit fd2d140

Browse files
committedSep 7, 2024·
Bump minimum Node version to 18
1 parent 37f98b2 commit fd2d140

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
node:
33-
- 16
3433
- 18
3534
- 20
35+
- 22
3636
os:
3737
- name: Ubuntu
3838
version: ubuntu-latest

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"conc": "./dist/bin/concurrently.js"
1212
},
1313
"engines": {
14-
"node": ">=16"
14+
"node": ">=18"
1515
},
1616
"exports": {
1717
".": {

‎tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"compilerOptions": {
33
"outDir": "./dist",
44
"declaration": true,
5-
"target": "ES2021",
5+
"target": "ES2022",
6+
"lib": ["ES2023"],
67
"module": "CommonJS",
78
"moduleResolution": "node",
89
"strict": true,

0 commit comments

Comments
 (0)
Please sign in to comment.