-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
test/fixtures/graphql-tag/does not transpile template literals without a tag/actual.js
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,3 @@ | ||
import gql from 'graphql-tag'; | ||
|
||
const foo = `query foo {foo}`; |
1 change: 1 addition & 0 deletions
1
test/fixtures/graphql-tag/does not transpile template literals without a tag/expected.js
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 @@ | ||
const foo = `query foo {foo}`; |
7 changes: 7 additions & 0 deletions
7
test/fixtures/graphql-tag/does not transpile template literals without a tag/options.json
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,7 @@ | ||
{ | ||
"plugins": [ | ||
[ | ||
"../../../../src" | ||
] | ||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
test/fixtures/graphql-tag/does not transpile template literals without gql tag/actual.js
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,3 @@ | ||
import gql from 'graphql-tag'; | ||
|
||
const foo = bar`query foo {foo}`; |
1 change: 1 addition & 0 deletions
1
test/fixtures/graphql-tag/does not transpile template literals without gql tag/expected.js
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 @@ | ||
const foo = bar`query foo {foo}`; |
7 changes: 7 additions & 0 deletions
7
test/fixtures/graphql-tag/does not transpile template literals without gql tag/options.json
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,7 @@ | ||
{ | ||
"plugins": [ | ||
[ | ||
"../../../../src" | ||
] | ||
] | ||
} |