Skip to content

Commit

Permalink
chore: rename files to match gen name
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Apr 19, 2024
1 parent 0c3c220 commit 341d6f7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Code } from '../../lib/Code.js'
import { hasMutation, hasQuery, hasSubscription } from '../../lib/graphql.js'
import type { Config } from './generateCode.js'
import { moduleNameSchemaBuildtime } from './SchemaBuildtime2.js'
import { moduleNameSchemaBuildtime } from './SchemaBuildtime.js'

export const moduleNameIndex = `Index`

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
import type { AnyClass, AnyGraphQLOutputField } from '../../lib/graphql.js'
import { hasMutation, hasQuery, hasSubscription, unwrapToNamed, unwrapToNonNull } from '../../lib/graphql.js'
import type { Config } from './generateCode.js'
import { moduleNameScalar } from './Scalar2.js'
import { moduleNameScalar } from './Scalar.js'

export const moduleNameSchemaRuntime = `SchemaRuntime`

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Config } from './generateCode.js'
import { moduleNameIndex } from './Index2.js'
import { moduleNameIndex } from './Index.js'

export const moduleNameSelect = `Select`

Expand Down
6 changes: 3 additions & 3 deletions src/generator/code/generateCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { buildSchema } from 'graphql'
import * as Path from 'node:path'
import type { TypeMapByKind } from '../../lib/graphql.js'
import { getTypeMapByKind } from '../../lib/graphql.js'
import { generateIndex } from './Index2.js'
import { generateScalar } from './Scalar2.js'
import { generateSchemaBuildtime } from './SchemaBuildtime2.js'
import { generateIndex } from './Index.js'
import { generateScalar } from './Scalar.js'
import { generateSchemaBuildtime } from './SchemaBuildtime.js'
import { generateRuntimeSchema } from './SchemaRuntime2.js'
import { generateSelect } from './Select2.js'

Expand Down

0 comments on commit 341d6f7

Please sign in to comment.