forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '826cba3b76e87dbd25a01db5150f89624adaab32' into sogko/master * commit '826cba3b76e87dbd25a01db5150f89624adaab32': 0.6.1 Fix tests for node v0.10, widen test matrix Fix test assertions for validation test when using custom TypeInfo (graphql#395) Removes depencency on babel-runtime. Upgrade to Flow v0.28. More specific return types from methods in Schema Only type Scalar config rather than Scalar type, improve schema builder types Introduce formal definition of "Thunk" to aid in fixing more issues uncovered by Flow v0.28 Additional flow issues corrected in anticipation of Flow v0.28 Fix some flow issues in anticipation of Flow v0.28 export type InputObjectConfigFieldMapThunk (graphql#411) Variable naming follow-up to path generation Errors thrown from resolvers have the execution path (graphql#396) Update all dependencies, include flow-specific lint handling Revert "Update babel-cli and flow-bin package references" (graphql#403) move babel config to the babelrc (graphql#399) Update babel-cli and flow-bin package references (graphql#388) Fix typo (graphql#387)
- Loading branch information
Showing
35 changed files
with
686 additions
and
289 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"plugins": [ | ||
"syntax-async-functions", | ||
"transform-class-properties", | ||
"transform-flow-strip-types", | ||
"transform-object-rest-spread", | ||
"transform-es2015-template-literals", | ||
"transform-es2015-literals", | ||
"transform-es2015-function-name", | ||
"transform-es2015-arrow-functions", | ||
"transform-es2015-block-scoped-functions", | ||
["transform-es2015-classes", {loose: true}], | ||
"transform-es2015-object-super", | ||
"transform-es2015-shorthand-properties", | ||
"transform-es2015-duplicate-keys", | ||
"transform-es2015-computed-properties", | ||
"check-es2015-constants", | ||
["transform-es2015-spread", {loose: true}], | ||
"transform-es2015-parameters", | ||
["transform-es2015-destructuring", {loose: true}], | ||
"transform-es2015-block-scoping", | ||
"transform-es2015-modules-commonjs", | ||
"transform-regenerator", | ||
] | ||
} |
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
.idea | ||
npm-debug.log | ||
|
||
.babelrc | ||
CONTRIBUTING.md | ||
node_modules | ||
coverage | ||
|
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "stable" | ||
- "6" | ||
- "5" | ||
- "4" | ||
- "iojs" | ||
- "0.12" | ||
|
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
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
Oops, something went wrong.