Add graphql peer dependencies (#37928)

* Add graphql peer dependencies

Apollo has a peer dependency on graphql, but several DT packages don't
install it. This fixes that.

* Bump required TS version to 2.8

* Bump version to 3.0
This commit is contained in:
Nathan Shively-Sanders 2019-08-27 09:07:50 -07:00 committed by GitHub
parent e1498ebe71
commit 2e8a04fe18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 4 deletions

View File

@ -1,7 +1,8 @@
{
"private": true,
"dependencies": {
"apollo-link": "^1.0.0",
"apollo-link-http-common": "^0.2.4"
"apollo-link": "^1.2.12",
"apollo-link-http-common": "^0.2.4",
"graphql": "^14.5.3"
}
}

View File

@ -1,6 +1,7 @@
{
"private": true,
"dependencies": {
"graphql": "^14.5.3",
"graphql-tools": "^4.0.5"
}
}

View File

@ -2,7 +2,7 @@
// Project: https://github.com/sonaye/mobx-apollo#readme
// Definitions by: Paul Selden <https://github.com/pselden>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6
// TypeScript Version: 3.0
import {
ApolloClient,

View File

@ -1,6 +1,7 @@
{
"private": true,
"dependencies": {
"apollo-client": "^2.0.0"
"apollo-client": "^2.0.0",
"graphql": "^14.5.3"
}
}