Skip to content

Commit 90ad479

Browse files
committed
docs
1 parent a45449a commit 90ad479

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

Diff for: example/.graphqlconfig

-1
This file was deleted.

Diff for: example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": {
77
"graphql-binding-github": "^0.1.0",
88
"graphql-import": "^0.1.4",
9-
"graphql-yoga": "^0.2.1"
9+
"graphql-yoga": "^0.2.2"
1010
},
1111
"now": {
1212
"alias": "graphql-binding-github"

Diff for: example/yarn.lock

+11-11
Original file line numberDiff line numberDiff line change
@@ -405,17 +405,17 @@ graphql-import@^0.1.4:
405405
graphql "^0.11.7"
406406
lodash "^4.17.4"
407407

408-
graphql-playground-html@^1.3.5:
409-
version "1.3.5"
410-
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.3.5.tgz#962ea7b39682e2285712feb481ff06ea560cf900"
408+
graphql-playground-html@^1.3.6:
409+
version "1.3.6"
410+
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.3.6.tgz#3db97d5d7e7123cf62a86820b0be5d4b4092af4a"
411411
dependencies:
412412
graphql-config "^1.0.9"
413413

414-
graphql-playground-middleware-express@^1.3.1:
415-
version "1.3.5"
416-
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.3.5.tgz#b1b7a11b51c29b088e47e30bed894323226a2d4b"
414+
graphql-playground-middleware-express@^1.3.6:
415+
version "1.3.6"
416+
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.3.6.tgz#03493fb016eaa43490539eff4d4fb15e6df72b88"
417417
dependencies:
418-
graphql-playground-html "^1.3.5"
418+
graphql-playground-html "^1.3.6"
419419
graphql-playground-middleware "^1.2.1-beta.6"
420420

421421
graphql-playground-middleware@^1.2.1-beta.6:
@@ -445,9 +445,9 @@ graphql-tools@^2.11.0, graphql-tools@^2.7.2:
445445
deprecated-decorator "^0.1.6"
446446
uuid "^3.1.0"
447447

448-
graphql-yoga@^0.2.1:
449-
version "0.2.1"
450-
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-0.2.1.tgz#a3f3ad97f36b2e671238b784f88ff4fd4e1987bb"
448+
graphql-yoga@^0.2.2:
449+
version "0.2.2"
450+
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-0.2.2.tgz#57d73be235fc4f5411e286a6985b18cbace3dc0a"
451451
dependencies:
452452
"@types/cors" "^2.8.3"
453453
"@types/express" "^4.0.39"
@@ -459,7 +459,7 @@ graphql-yoga@^0.2.1:
459459
cors "^2.8.4"
460460
express "^4.16.2"
461461
graphql "^0.11.7"
462-
graphql-playground-middleware-express "^1.3.1"
462+
graphql-playground-middleware-express "^1.3.6"
463463
graphql-subscriptions "^0.5.4"
464464
graphql-tools "^2.7.2"
465465
portfinder "^1.0.13"

Diff for: src/GitHubLink.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class GitHubLink extends HttpLink {
55
constructor(token: string) {
66
if (!token) {
77
throw new Error(
8-
'No Github token provided. Create one here: https://github.com/settings/tokens (Help: https://developer.github.com/v4/guides/forming-calls/#authenticating-with-graphql)',
8+
'No Github token provided. Create one here: https://github.com/settings/tokens (Guide: https://developer.github.com/v4/guides/forming-calls/#authenticating-with-graphql)',
99
)
1010
}
1111
super({

Diff for: tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"esnext.asynciterable", "es2016", "dom"
1111
]
1212
},
13-
"exclude": ["node_modules", "dist", "examples"]
13+
"exclude": ["node_modules", "dist", "example"]
1414
}

0 commit comments

Comments
 (0)