Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aexol committed Jun 6, 2024
1 parent 45a1e0c commit 2d0b0e3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/typescript-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-node",
"version": "1.2.3",
"version": "1.2.4",
"description": "",
"private": true,
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-zeus-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-zeus-core",
"version": "5.4.3",
"version": "5.4.4",
"private": false,
"main": "./lib/index.js",
"author": "GraphQL Editor, Artur Czemiel",
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-zeus-jsonschema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-zeus-jsonschema",
"version": "5.4.3",
"version": "5.4.4",
"private": false,
"main": "./lib/index.js",
"author": "GraphQL Editor, Artur Czemiel",
Expand Down
6 changes: 3 additions & 3 deletions packages/graphql-zeus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-zeus",
"version": "5.4.3",
"version": "5.4.4",
"private": false,
"scripts": {
"start": "ttsc --watch",
Expand All @@ -26,8 +26,8 @@
"dependencies": {
"config-maker": "^0.0.2",
"cross-fetch": "^3.0.4",
"graphql-zeus-core": "^5.4.3",
"graphql-zeus-jsonschema": "^5.4.3",
"graphql-zeus-core": "^5.4.4",
"graphql-zeus-jsonschema": "^5.4.4",
"yargs": "^16.1.1"
}
}
2 changes: 1 addition & 1 deletion packages/graphql-zeus/plugins/typedDocumentNode/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ProjectOptions } from '@/config.js';

export const pluginTypedDocumentNode = ({ esModule, node }: Partial<ProjectOptions>) => `/* eslint-disable */
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
import ${esModule ? "{ gql }" : "gql"} from 'graphql-tag';
import ${esModule ? '{ gql }' : 'gql'} from 'graphql-tag';
import {
ValueTypes,
GenericOperation,
Expand Down

0 comments on commit 2d0b0e3

Please sign in to comment.