-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename packages from graphql-server- to apollo-server- (#465)
- Loading branch information
1 parent
576e7b8
commit 300c0cd
Showing
103 changed files
with
728 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "apollo-server-core", | ||
"version": "1.0.0", | ||
"description": "Core engine for Apollo GraphQL server", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"compile": "tsc", | ||
"prepublish": "npm run compile" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-core" | ||
}, | ||
"keywords": [ | ||
"GraphQL", | ||
"Apollo", | ||
"Server", | ||
"Javascript" | ||
], | ||
"author": "Jonas Helfer <jonas@helfer.email>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/apollographql/apollo-server/issues" | ||
}, | ||
"homepage": "https://github.com/apollographql/apollo-server#readme", | ||
"devDependencies": { | ||
"@types/fibers": "0.0.29", | ||
"@types/graphql": "^0.9.0", | ||
"fibers": "1.0.15", | ||
"meteor-promise": "^0.8.2" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "^0.9.0 || ^0.10.1" | ||
}, | ||
"optionalDependencies": { | ||
"@types/graphql": "^0.9.0" | ||
}, | ||
"typings": "dist/index.d.ts", | ||
"typescript": { | ||
"definition": "dist/index.d.ts" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export { runQuery, LogFunction, LogMessage, LogStep, LogAction } from './runQuery'; | ||
export { runHttpQuery, HttpQueryRequest, HttpQueryError } from './runHttpQuery'; | ||
export { default as GraphQLOptions, resolveGraphqlOptions } from './graphqlOptions'; | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"name": "apollo-server-express", | ||
"version": "1.0.0", | ||
"description": "Production-ready Node.js GraphQL server for Express and Connect", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"compile": "tsc", | ||
"prepublish": "npm run compile" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-express" | ||
}, | ||
"keywords": [ | ||
"GraphQL", | ||
"Apollo", | ||
"Server", | ||
"Express", | ||
"Connect", | ||
"Javascript" | ||
], | ||
"author": "Jonas Helfer <jonas@helfer.email>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/apollographql/apollo-server/issues" | ||
}, | ||
"homepage": "https://github.com/apollographql/apollo-server#readme", | ||
"dependencies": { | ||
"apollo-server-core": "^1.0.0", | ||
"apollo-server-module-graphiql": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/body-parser": "1.16.3", | ||
"@types/connect": "^3.4.30", | ||
"@types/express": "^4.0.35", | ||
"@types/multer": "0.0.33", | ||
"body-parser": "^1.17.2", | ||
"connect": "^3.6.2", | ||
"connect-query": "^1.0.0", | ||
"express": "^4.15.3", | ||
"apollo-server-integration-testsuite": "^1.0.0", | ||
"multer": "^1.3.0" | ||
}, | ||
"peerDependencies": { | ||
"graphql": "^0.9.0 || ^0.10.1" | ||
}, | ||
"optionalDependencies": { | ||
"@types/express": "^4.0.35", | ||
"@types/graphql": "^0.9.1" | ||
}, | ||
"typings": "dist/index.d.ts", | ||
"typescript": { | ||
"definition": "dist/index.d.ts" | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...-server-express/src/expressApollo.test.ts → ...-server-express/src/expressApollo.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...aphql-server-express/src/expressApollo.ts → ...pollo-server-express/src/expressApollo.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export { | ||
ExpressGraphQLOptionsFunction, | ||
ExpressHandler, | ||
ExpressGraphiQLOptionsFunction, | ||
graphqlExpress, | ||
graphiqlExpress, | ||
} from './expressApollo'; | ||
|
||
export { | ||
graphqlConnect, | ||
graphiqlConnect, | ||
} from './connectApollo'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"extends": "../../tsconfig", | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./dist", | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
] | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"dist" | ||
] | ||
} |
File renamed without changes.
Oops, something went wrong.