Skip to content

Commit

Permalink
update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
arvitaly committed Apr 23, 2017
1 parent 0ffecc4 commit 62e2f4a
Show file tree
Hide file tree
Showing 5 changed files with 2,103 additions and 8 deletions.
1 change: 0 additions & 1 deletion __tests__/mapper-test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as g from "graphql";
import mapping, {
IGraphQLObjectTypeConfig,
IGraphQLObjectTypeFieldConfig,
Expand Down
2 changes: 0 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import * as g from "graphql";
// tslint:disable-next-line:max-line-length
// export type GraphQLType = "Object" | "String" | "Enum" | "Float" | "Int" | "Boolean" | "Union" | "NonNull" | "ID" | "InputObject";

type GraphQLAnyType = "any";

export interface IGraphQLObjectTypeConfig {
type: g.GraphQLObjectType;
fields: any[];
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
"jest": {},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/node": "^7.0.12",
"@types/node": "^7.0.13",
"coveralls": "^2.13.0",
"jest": "^19.0.2",
"tslint": "^5.0.0",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"dependencies": {
"@types/graphql": "^0.9.0",
"@types/graphql-relay": "^0.4.1",
"graphql": "^0.9.2",
"@types/graphql-relay": "^0.4.2",
"graphql": "^0.9.3",
"graphql-relay": "^0.5.1"
}
}
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"target": "es2015",
"module": "commonjs",
"noImplicitAny": true,
"strictNullChecks": true
"strictNullChecks": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}

0 comments on commit 62e2f4a

Please sign in to comment.