Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens committed May 11, 2023
1 parent c8ee4eb commit 2327545
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/lib/coerceAndValidateForGraphQLInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type {
GraphQLInputType,
GraphQLError,
} from 'graphql';
import { Kind, } from 'graphql';
import { Kind } from 'graphql';
import { getVariableValues } from 'graphql/execution/values';
import { getTypeNodeForType } from './context/executeGraphQLFieldToRootVal';

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/lib/server/addHealthCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { healthCheckPath as defaultHealthCheckPath } from '../defaults';

type AddHealthCheckArgs = { config: KeystoneConfig; server: Application };

export async function addHealthCheck ({ config, server }: AddHealthCheckArgs) {
export async function addHealthCheck({ config, server }: AddHealthCheckArgs) {
if (!config.server?.healthCheck) return;

const healthCheck = config.server.healthCheck === true ? {} : config.server.healthCheck;
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/scripts/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import { createAdminUIMiddlewareWithNextApp } from '../lib/server/createAdminUIM
import {
getBuiltKeystoneConfigurationPath,
getBuiltKeystoneConfiguration,
getSystemPaths } from '../artifacts';
getSystemPaths,
} from '../artifacts';
import { deployMigrations } from '../lib/migrations';
import { ExitError } from './utils';
import type { Flags } from './cli';
Expand Down

0 comments on commit 2327545

Please sign in to comment.