Skip to content

Commit

Permalink
chore(): upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 17, 2021
1 parent 31d4ae3 commit 9f99236
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 48 deletions.
71 changes: 35 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"release": "release-it"
},
"devDependencies": {
"@apollo/federation": "0.21.2",
"@apollo/federation": "0.22.0",
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@nestjs/common": "7.6.14",
Expand All @@ -41,7 +41,7 @@
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"graphql": "15.4.0",
"graphql": "15.5.0",
"husky": "5.1.3",
"jest": "26.6.3",
"lint-staged": "10.5.4",
Expand All @@ -57,10 +57,9 @@
"dependencies": {
"@graphql-tools/merge": "6.2.10",
"@graphql-tools/schema": "7.1.3",
"@graphql-tools/utils": "7.5.1",
"@graphql-tools/utils": "7.6.0",
"@nestjs/mapped-types": "0.4.0",
"apollo-env": "0.6.6",
"apollo-server-core": "2.21.1",
"chokidar": "3.5.1",
"fast-glob": "3.2.5",
"iterall": "1.3.0",
Expand All @@ -72,11 +71,12 @@
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"apollo-server-core": "^2.21.1",
"graphql": "^14.1.1 || ^15.0.0",
"reflect-metadata": "^0.1.12"
},
"optionalDependencies": {
"@apollo/gateway": "^0.23.2",
"@apollo/gateway": "^0.24.4",
"apollo-server-testing": "^2.21.1",
"ts-morph": "^10.0.1"
},
Expand Down
14 changes: 7 additions & 7 deletions tests/utils/printed-schema.snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,20 @@ enum Direction {
Up
}
type Ingredient {
id: ID!
"""ingredient name"""
name: String @deprecated(reason: "is deprecated")
}
"""example interface"""
interface IRecipe {
id: ID!
interfaceResolver(arg: Float): Boolean!
title: String!
}
type Ingredient {
id: ID!
"""ingredient name"""
name: String @deprecated(reason: "is deprecated")
}
type Mutation {
addRecipe(newRecipeData: NewRecipeInput!): Recipe!
removeRecipe(id: String!): Boolean!
Expand Down

0 comments on commit 9f99236

Please sign in to comment.