Skip to content

Commit

Permalink
Deploy af48008 to NPM branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI committed Feb 5, 2020
1 parent 3612104 commit e7f3a83
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion utilities/index.d.ts
Expand Up @@ -61,7 +61,7 @@ export {
printSchema,
printType,
printIntrospectionSchema,
} from './schemaPrinter';
} from './printSchema';

// Create a GraphQLType from a GraphQL language AST.
export { typeFromAST } from './typeFromAST';
Expand Down
8 changes: 4 additions & 4 deletions utilities/index.js
Expand Up @@ -66,19 +66,19 @@ Object.defineProperty(exports, "lexicographicSortSchema", {
Object.defineProperty(exports, "printSchema", {
enumerable: true,
get: function get() {
return _schemaPrinter.printSchema;
return _printSchema.printSchema;
}
});
Object.defineProperty(exports, "printType", {
enumerable: true,
get: function get() {
return _schemaPrinter.printType;
return _printSchema.printType;
}
});
Object.defineProperty(exports, "printIntrospectionSchema", {
enumerable: true,
get: function get() {
return _schemaPrinter.printIntrospectionSchema;
return _printSchema.printIntrospectionSchema;
}
});
Object.defineProperty(exports, "typeFromAST", {
Expand Down Expand Up @@ -218,7 +218,7 @@ var _extendSchema = require("./extendSchema");

var _lexicographicSortSchema = require("./lexicographicSortSchema");

var _schemaPrinter = require("./schemaPrinter");
var _printSchema = require("./printSchema");

var _typeFromAST = require("./typeFromAST");

Expand Down
2 changes: 1 addition & 1 deletion utilities/index.js.flow
Expand Up @@ -61,7 +61,7 @@ export {
printSchema,
printType,
printIntrospectionSchema,
} from './schemaPrinter';
} from './printSchema';

// Create a GraphQLType from a GraphQL language AST.
export { typeFromAST } from './typeFromAST';
Expand Down
2 changes: 1 addition & 1 deletion utilities/index.mjs
Expand Up @@ -18,7 +18,7 @@ export { extendSchema // @deprecated: Get the description from a schema AST node

export { lexicographicSortSchema } from "./lexicographicSortSchema.mjs"; // Print a GraphQLSchema to GraphQL Schema language.

export { printSchema, printType, printIntrospectionSchema } from "./schemaPrinter.mjs"; // Create a GraphQLType from a GraphQL language AST.
export { printSchema, printType, printIntrospectionSchema } from "./printSchema.mjs"; // Create a GraphQLType from a GraphQL language AST.

export { typeFromAST } from "./typeFromAST.mjs"; // Create a JavaScript value from a GraphQL language AST with a type.

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e7f3a83

Please sign in to comment.