Skip to content

Commit 31d4f14

Browse files
committed
fix: move graphql to peerDependencies
BREAKING CHANGE: `graphql` is now a peer dependency
1 parent 18ec2c7 commit 31d4f14

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@
5656
"minimatch": "^3.0.4"
5757
},
5858
"peerDependencies": {
59-
"graphql": "0.11 - 0.12"
59+
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
6060
}
6161
}

src/extensions/endpoints/resolveRefString.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function resolveRefString(str: string, values?: object): string {
1111
return res
1212
}
1313

14-
export function resolveEnvsInValues<T extends { [key: string]: any}>(
14+
export function resolveEnvsInValues<T extends { [key: string]: any }>(
1515
config: T,
1616
env: { [name: string]: string | undefined },
1717
): T {

0 commit comments

Comments
 (0)