Skip to content

Commit 82816b4

Browse files
committed
chore: update dependencies
1 parent 063c49f commit 82816b4

File tree

3 files changed

+441
-482
lines changed

3 files changed

+441
-482
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,31 @@
2626
"dependencies": {
2727
"dataloader": "^2.0.0",
2828
"graphql-compose-connection": "8.2.1",
29-
"graphql-compose-pagination": "8.2.1"
29+
"graphql-compose-pagination": "8.3.0"
3030
},
3131
"peerDependencies": {
3232
"graphql-compose": "^7.21.4 || ^8.0.0 || ^9.0.0",
3333
"mongoose": "^6.0.0 || ^5.0.0 || ^4.4.0"
3434
},
3535
"devDependencies": {
36-
"@types/jest": "26.0.24",
37-
"@typescript-eslint/eslint-plugin": "4.28.4",
38-
"@typescript-eslint/parser": "4.28.4",
39-
"eslint": "7.31.0",
36+
"@types/jest": "27.0.1",
37+
"@typescript-eslint/eslint-plugin": "4.29.3",
38+
"@typescript-eslint/parser": "4.29.3",
39+
"eslint": "7.32.0",
4040
"eslint-config-airbnb-base": "14.2.1",
4141
"eslint-config-prettier": "8.3.0",
42-
"eslint-plugin-import": "2.23.4",
43-
"eslint-plugin-prettier": "3.4.0",
42+
"eslint-plugin-import": "2.24.2",
43+
"eslint-plugin-prettier": "3.4.1",
4444
"graphql": "15.5.1",
45-
"graphql-compose": "9.0.1",
46-
"jest": "27.0.6",
45+
"graphql-compose": "9.0.2",
46+
"jest": "27.1.0",
4747
"mongodb-memory-server": "7.3.6",
4848
"mongoose": "6.0.2",
4949
"prettier": "2.3.2",
5050
"request": "2.88.2",
5151
"rimraf": "3.0.2",
52-
"semantic-release": "17.4.4",
53-
"ts-jest": "27.0.4",
52+
"semantic-release": "17.4.7",
53+
"ts-jest": "27.0.5",
5454
"typescript": "4.3.5"
5555
},
5656
"scripts": {

src/resolvers/helpers/errorCatcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export function addErrorCatcherField(resolver: Resolver<any, any, any>): void {
2525
try {
2626
const res = await childResolve(rp);
2727
return res;
28-
} catch (e) {
28+
} catch (e: any) {
2929
let error;
3030
if (e instanceof ValidationError) {
3131
error = {

0 commit comments

Comments
 (0)