Skip to content

Commit 9198307

Browse files
committed
renamed
1 parent 786d3db commit 9198307

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# GitHub GraphQL Binding
1+
# GraphQL Binding for GitHub
22

33
Embed GitHub's GraphQL API into your server application
44

55
## Install
66

77
```sh
8-
yarn add github-graphql-binding
8+
yarn add graphql-binding-github
99
```
1010

1111
## Example ([Demo](https://graphqlbin.com/Agjcr))
1212

1313
See [example directory](example) for full example application.
1414

1515
```js
16-
const { GitHub } = require('github-graphql-binding')
16+
const { GitHub } = require('graphql-binding-github')
1717
const { GraphQLServer } = require('graphql-yoga')
1818
const { importSchema } = require('graphql-import')
1919

example/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"scripts": {
33
"start": "node src",
4-
"deploy": "now --public && now alias && now rm --yes --safe github-graphql-binding"
4+
"deploy": "now --public && now alias && now rm --yes --safe graphql-binding-github"
55
},
66
"dependencies": {
7-
"github-graphql-binding": "^0.1.0",
7+
"graphql-binding-github": "^0.1.0",
88
"graphql-import": "^0.1.4",
99
"graphql-yoga": "^0.2.1"
1010
},
1111
"now": {
12-
"alias": "github-graphql-binding"
12+
"alias": "graphql-binding-github"
1313
}
1414
}

example/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { GitHub } = require('github-graphql-binding')
1+
const { GitHub } = require('graphql-binding-github')
22
const { GraphQLServer } = require('graphql-yoga')
33
const { importSchema } = require('graphql-import')
44

example/yarn.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -357,17 +357,6 @@ fs.realpath@^1.0.0:
357357
version "1.0.0"
358358
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
359359

360-
github-graphql-binding@^0.1.0:
361-
version "0.1.0"
362-
resolved "https://registry.yarnpkg.com/github-graphql-binding/-/github-graphql-binding-0.1.0.tgz#56b8b08e6d5aa13398c599bd894f068706908910"
363-
dependencies:
364-
"@types/graphql" "^0.11.7"
365-
apollo-link "^1.0.5"
366-
apollo-link-http "^1.3.0"
367-
cross-fetch "^1.1.1"
368-
graphql "^0.11.7"
369-
graphql-tools "^2.11.0"
370-
371360
glob@^7.0.5:
372361
version "7.1.2"
373362
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
@@ -379,6 +368,17 @@ glob@^7.0.5:
379368
once "^1.3.0"
380369
path-is-absolute "^1.0.0"
381370

371+
graphql-binding-github@^0.1.0:
372+
version "0.1.0"
373+
resolved "https://registry.yarnpkg.com/graphql-binding-github/-/graphql-binding-github-0.1.0.tgz#c871315d5882a8ecfa394016263e5402609eb5b1"
374+
dependencies:
375+
"@types/graphql" "^0.11.7"
376+
apollo-link "^1.0.5"
377+
apollo-link-http "^1.3.0"
378+
cross-fetch "^1.1.1"
379+
graphql "^0.11.7"
380+
graphql-tools "^2.11.0"
381+
382382
graphql-config@^1.0.9:
383383
version "1.0.9"
384384
resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.0.9.tgz#8fa416a7c2bdb8f62f441324775dd3ff8a266652"
@@ -765,8 +765,8 @@ string_decoder@~0.10.x:
765765
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
766766

767767
subscriptions-transport-ws@^0.9.1:
768-
version "0.9.2"
769-
resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.2.tgz#b3605f99d0bf4251760abbd5fdd6b73d72a57d5b"
768+
version "0.9.3"
769+
resolved "https://registry.yarnpkg.com/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.3.tgz#a6d219bdf1e44cffa572c4306e59ecc867be8e3f"
770770
dependencies:
771771
backo2 "^1.0.2"
772772
eventemitter3 "^2.0.3"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "github-graphql-binding",
2+
"name": "graphql-binding-github",
33
"version": "0.1.0",
44
"main": "dist/index.js",
55
"typings": "./dist/index.d.ts",

0 commit comments

Comments
 (0)