Skip to content

Commit

Permalink
Bump minimum Node version to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavohenke committed Sep 7, 2024
1 parent 37f98b2 commit fd2d140
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
fail-fast: false
matrix:
node:
- 16
- 18
- 20
- 22
os:
- name: Ubuntu
version: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"conc": "./dist/bin/concurrently.js"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"exports": {
".": {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"target": "ES2021",
"target": "ES2022",
"lib": ["ES2023"],
"module": "CommonJS",
"moduleResolution": "node",
"strict": true,
Expand Down

0 comments on commit fd2d140

Please sign in to comment.