Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepend ./ to TS relative paths to make them valid, fix #543 #544

Merged
merged 1 commit into from
Aug 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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