Skip to content

Commit 52edba6

Browse files
Merge pull request #1319 from valentinpalkovic/valentin/breaking-change-drop-node-16
[BREAKING CHANGE]: Drop Node 16 support
2 parents 97bc588 + a6af2e7 commit 52edba6

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
node-version: [16, 18, 20]
20+
node-version: [18, 20, 21]
2121
steps:
2222
- uses: actions/checkout@v4
2323
with:
@@ -50,7 +50,7 @@ jobs:
5050
- name: Use Node.js ${{ matrix.node-version }}
5151
uses: actions/[email protected]
5252
with:
53-
node-version: 14
53+
node-version: 18
5454
cache: 'npm'
5555
- name: Install latest npm
5656
run: |

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.6.0
1+
18

.swcrc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
"syntax": "typescript",
88
"tsx": false,
99
"decorators": false,
10-
"dynamicImport": false,
11-
"target": "es2016"
10+
"dynamicImport": false
1211
}
1312
},
1413
"env": {
1514
"targets": {
16-
"node": "14"
15+
"node": "18"
1716
}
1817
}
1918
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ nexus build
8383

8484
| Node Version | Support |
8585
| -------------------: | :----------------- |
86-
| (Maintenance LTS) 16 | :heavy_check_mark: |
87-
| (LTS) 18 | :heavy_check_mark: |
88-
| (Current) 20 | :heavy_check_mark: |
86+
| (Maintenance LTS) 18 | :heavy_check_mark: |
87+
| (LTS) 20 | :heavy_check_mark: |
88+
| (Current) 21 | :heavy_check_mark: |
8989

9090
## Examples
9191

0 commit comments

Comments
 (0)