Skip to content

Commit 4110c80

Browse files
feat: Drop support for Node 14 (#37)
1 parent bb87762 commit 4110c80

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Diff for: .circleci/config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ workflows:
5959
matrix:
6060
parameters:
6161
node-version:
62-
- "14"
6362
- "16"
6463
- "18"
6564
- Prettier

Diff for: package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@apollo/utils.withrequired": "2.0.1",
3333
"@google-cloud/functions-framework": "3.3.0",
3434
"@types/jest": "29.5.0",
35-
"@types/node": "14.18.53",
35+
"@types/node": "16.18.39",
3636
"jest": "29.6.1",
3737
"jest-junit": "15.0.0",
3838
"prettier": "3.0.0",
@@ -49,7 +49,7 @@
4949
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-google-cloud-functions/issues"
5050
},
5151
"engines": {
52-
"node": ">=14.0"
52+
"node": ">=16.0"
5353
},
5454
"volta": {
5555
"node": "18.17.0",

Diff for: renovate.json5

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// versions we support.
1616
{
1717
"matchPackageNames": ["@types/node"],
18-
"allowedVersions": "14.x"
18+
"allowedVersions": "16.x"
1919
},
2020
],
2121
}

Diff for: tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"rootDir": "./src",
44
"outDir": "./dist",
55
"baseUrl": ".",
6-
"target": "ES2020",
6+
"lib": ["ES2021"],
7+
"target": "ES2021",
78
"module": "CommonJS",
89
"downlevelIteration": true,
910
"moduleResolution": "node",

0 commit comments

Comments
 (0)