Skip to content

Commit 18ec2c7

Browse files
committed
fix(deps): updated dependencies & fix typing
1 parent b3134ac commit 18ec2c7

4 files changed

Lines changed: 3050 additions & 7 deletions

File tree

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@
3737
},
3838
"homepage": "https://github.com/graphcool/graphql-config#readme",
3939
"devDependencies": {
40-
"@types/graphql": "0.11.7",
41-
"@types/node": "8.5.7",
40+
"@types/graphql": "0.12.4",
41+
"@types/node": "9.4.6",
4242
"@types/node-fetch": "1.6.7",
43-
"ava": "0.24.0",
43+
"ava": "0.25.0",
4444
"cpx": "1.5.0",
45-
"graphql": "^0.12.3",
45+
"graphql": "^0.13.0",
4646
"rimraf": "2.6.2",
47-
"tslint": "5.8.0",
47+
"tslint": "5.9.1",
4848
"tslint-config-standard": "7.0.0",
4949
"typescript": "2.7.1"
5050
},

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

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"target": "es5",
66
"lib": [
77
"es2017",
8-
"DOM",
8+
"dom",
99
"esnext.asynciterable"
1010
],
1111
"outDir": "lib",

0 commit comments

Comments
 (0)