Skip to content

Commit

Permalink
Prepend ./ to TS relative paths to make them valid, fix #543
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Aug 10, 2018
1 parent 457225b commit 38da237
Show file tree
Hide file tree
Showing 2 changed files with 204 additions and 202 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { EnumCommentTestCase, Duplicate } from \\"../../__generated__/globalTypes\\";
import { EnumCommentTestCase, Duplicate } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL mutation operation: duplicates
Expand Down Expand Up @@ -697,7 +697,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroName
Expand Down Expand Up @@ -819,7 +819,7 @@ export interface humanFragment {
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL fragment: droidFragment
Expand Down Expand Up @@ -960,7 +960,7 @@ export interface simpleFragment {
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL fragment: anotherFragment
Expand Down Expand Up @@ -1083,7 +1083,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroInlineFragment
Expand Down Expand Up @@ -1148,7 +1148,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroName
Expand Down Expand Up @@ -1247,7 +1247,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroName
Expand Down Expand Up @@ -1358,7 +1358,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { EnumCommentTestCase } from \\"../../__generated__/globalTypes\\";
import { EnumCommentTestCase } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: nesting
Expand Down Expand Up @@ -1408,7 +1408,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { EnumCommentTestCase } from \\"../../__generated__/globalTypes\\";
import { EnumCommentTestCase } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: nesting
Expand Down Expand Up @@ -1458,7 +1458,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroFragment
Expand Down Expand Up @@ -1586,7 +1586,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode } from \\"../../__generated__/globalTypes\\";
import { Episode } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL query operation: HeroName
Expand Down Expand Up @@ -1651,7 +1651,7 @@ Array [
"fileContents": "/* tslint:disable */
// This file was automatically generated and should not be edited.
import { Episode, ReviewInput } from \\"../../__generated__/globalTypes\\";
import { Episode, ReviewInput } from \\"./../../__generated__/globalTypes\\";
// ====================================================
// GraphQL mutation operation: ReviewMovie
Expand Down
Loading

0 comments on commit 38da237

Please sign in to comment.