Skip to content

Commit

Permalink
Moved Maybe to jsutils folder and remove tsutils (#2621)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Jun 6, 2020
1 parent ba2216c commit f2c2b78
Show file tree
Hide file tree
Showing 20 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/error/GraphQLError.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ASTNode } from '../language/ast';
import { Source } from '../language/source';
Expand Down
2 changes: 1 addition & 1 deletion src/error/locatedError.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ASTNode } from '../language/ast';

Expand Down
2 changes: 1 addition & 1 deletion src/execution/execute.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { PromiseOrValue } from '../jsutils/PromiseOrValue';
import { Path } from '../jsutils/Path';
Expand Down
2 changes: 1 addition & 1 deletion src/execution/values.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { GraphQLError } from '../error/GraphQLError';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/graphql.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from './tsutils/Maybe';
import { Maybe } from './jsutils/Maybe';

import { Source } from './language/source';
import { GraphQLSchema } from './type/schema';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/language/visitor.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ASTNode, ASTKindToNode } from './ast';

Expand Down
2 changes: 1 addition & 1 deletion src/subscription/subscribe.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { DocumentNode } from '../language/ast';
import { ExecutionResult } from '../execution/execute';
Expand Down
2 changes: 1 addition & 1 deletion src/type/definition.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// FIXME
/* eslint-disable import/no-cycle */

import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { PromiseOrValue } from '../jsutils/PromiseOrValue';
import { Path } from '../jsutils/Path';
Expand Down
2 changes: 1 addition & 1 deletion src/type/directives.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// FIXME
/* eslint-disable import/no-cycle */

import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { DirectiveDefinitionNode } from '../language/ast';
import { DirectiveLocationEnum } from '../language/directiveLocation';
Expand Down
2 changes: 1 addition & 1 deletion src/type/schema.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// FIXME
/* eslint-disable import/no-cycle */

import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { SchemaDefinitionNode, SchemaExtensionNode } from '../language/ast';

Expand Down
2 changes: 1 addition & 1 deletion src/utilities/TypeInfo.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { Visitor } from '../language/visitor';
import { ASTNode, ASTKindToNode, FieldNode } from '../language/ast';
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/astFromValue.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ValueNode } from '../language/ast';
import { GraphQLInputType } from '../type/definition';
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/extendSchema.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { Location, DocumentNode, StringValueNode } from '../language/ast';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/getIntrospectionQuery.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { DirectiveLocationEnum } from '../language/directiveLocation';

Expand Down
2 changes: 1 addition & 1 deletion src/utilities/getOperationAST.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { DocumentNode, OperationDefinitionNode } from '../language/ast';

Expand Down
2 changes: 1 addition & 1 deletion src/utilities/valueFromAST.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ValueNode } from '../language/ast';
import { GraphQLInputType } from '../type/definition';
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/valueFromASTUntyped.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { ValueNode } from '../language/ast';

Expand Down
2 changes: 1 addition & 1 deletion src/validation/ValidationContext.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { GraphQLError } from '../error/GraphQLError';
import { ASTVisitor } from '../language/visitor';
Expand Down
2 changes: 1 addition & 1 deletion src/validation/validate.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Maybe } from '../tsutils/Maybe';
import { Maybe } from '../jsutils/Maybe';

import { GraphQLError } from '../error/GraphQLError';

Expand Down

0 comments on commit f2c2b78

Please sign in to comment.