Skip to content

Commit b7e056c

Browse files
committed
chore(deps): upgrade all essential dependencies
1 parent c63f90a commit b7e056c

File tree

9 files changed

+5132
-5481
lines changed

9 files changed

+5132
-5481
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,8 @@ workflows:
7474
matrix:
7575
parameters:
7676
node-version:
77-
- "16"
78-
- "18"
7977
- "20"
78+
- "22"
8079
- Prettier
8180
- Lint
8281
- Spell Check

.codesandbox/ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"sandboxes": ["apollo-server-integration-aws-lambda-k6ismd"],
3-
"node": "18"
3+
"node": "20"
44
}

.eslintrc.cjs

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1818
fetch-depth: 0
1919

20-
- name: Setup Node.js 16.x
20+
- name: Setup Node.js 22.x
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 16.x
23+
node-version: 22.x
2424

2525
- name: Install Dependencies
2626
run: npm i

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@
103103
```
104104

105105
The 3 event handlers provided by the package are:
106-
107106
- `createAPIGatewayProxyEventV2RequestHandler()`
108107
- `createALBEventRequestHandler()`
109108
- `createAPIGatewayProxyEventRequestHandler()`

eslint.config.cjs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
const { defineConfig } = require('eslint/config');
2+
3+
const tsParser = require('@typescript-eslint/parser');
4+
const typescriptEslint = require('@typescript-eslint/eslint-plugin');
5+
6+
module.exports = defineConfig([
7+
{},
8+
{
9+
files: ['src/**/*.ts'],
10+
11+
languageOptions: {
12+
parser: tsParser,
13+
14+
parserOptions: {
15+
project: 'tsconfig.eslint.json',
16+
tsconfigRootDir: __dirname,
17+
},
18+
},
19+
20+
plugins: {
21+
'@typescript-eslint': typescriptEslint,
22+
},
23+
24+
rules: {
25+
'@typescript-eslint/consistent-type-imports': 'error',
26+
},
27+
},
28+
]);

0 commit comments

Comments
 (0)