Skip to content

Commit

Permalink
fix(syntax): fix for javascriptReact scope change
Browse files Browse the repository at this point in the history
VSCode recently changed the scope for javascriptReact to be
`source.js.jsx` from `source.jsx`. Closes #53.
  • Loading branch information
ajhyndman authored and Kumar Harsh committed Nov 14, 2017
1 parent ec7a2d2 commit 0bb8ccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx"
],
"scopeName": "inline.graphql",
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/graphql.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@
"patterns": [
{ "include": "source.js" },
{ "include": "source.ts" },
{ "include": "source.jsx" },
{ "include": "source.js.jsx" },
{ "include": "source.tsx" }
]
},
Expand Down

0 comments on commit 0bb8ccb

Please sign in to comment.