Skip to content

Commit

Permalink
fix: move graphql to peerDependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `graphql` is now a peer dependency
  • Loading branch information
schickling committed Feb 14, 2018
1 parent 18ec2c7 commit 31d4f14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"minimatch": "^3.0.4"
},
"peerDependencies": {
"graphql": "0.11 - 0.12"
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
}
}
2 changes: 1 addition & 1 deletion src/extensions/endpoints/resolveRefString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function resolveRefString(str: string, values?: object): string {
return res
}

export function resolveEnvsInValues<T extends { [key: string]: any}>(
export function resolveEnvsInValues<T extends { [key: string]: any }>(
config: T,
env: { [name: string]: string | undefined },
): T {
Expand Down

0 comments on commit 31d4f14

Please sign in to comment.