Correct graphql-extensions package dependencies.

Both the `apollo-server-core` and `apollo-server-env` packages are listed as
`devDependencies` for `graphql-extensions` even though they are both
directly depended upon at runtime.

While this frequently works out because of other peer dependencies, it
certainly should have its dependencies properly declared.

Closes: https://github.com/apollographql/apollo-server/issues/1963
This commit is contained in:
Jesse Rosenberger 2018-11-29 14:06:33 +02:00
parent 85e9094f6c
commit 88d8102e23
No known key found for this signature in database
GPG key ID: C0CCCF81AA6C08D8

View file

@ -14,9 +14,7 @@
"node": ">=6.0"
},
"dependencies": {
"@apollographql/apollo-tools": "^0.2.6"
},
"devDependencies": {
"@apollographql/apollo-tools": "^0.2.6",
"apollo-server-core": "file:../apollo-server-core",
"apollo-server-env": "file:../apollo-server-env"
},