From 236c88ec59642da6662963be50dbbef76ec9e598 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Fri, 26 Sep 2025 11:37:07 -0400 Subject: [PATCH] chore: fix graphql yarn watch (#32578) --- scripts/gulp/tasks/gulpGraphql.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gulp/tasks/gulpGraphql.ts b/scripts/gulp/tasks/gulpGraphql.ts index 31eaccdc4f..143e60ae40 100644 --- a/scripts/gulp/tasks/gulpGraphql.ts +++ b/scripts/gulp/tasks/gulpGraphql.ts @@ -35,14 +35,14 @@ export async function nexusCodegenWatch () { } export async function graphqlCodegen () { - return spawned('gql-codegen', 'yarn graphql-codegen --config graphql-codegen.yml', { + return spawned('gql-codegen', 'yarn graphql-codegen --config graphql/graphql-codegen.yml', { cwd: monorepoPaths.pkgDataContext, waitForExit: true, }) } export async function graphqlCodegenWatch () { - const spawned = universalSpawn('graphql-codegen', ['--watch', '--config', 'graphql-codegen.yml'], { + const spawned = universalSpawn('graphql-codegen', ['--watch', '--config', 'graphql/graphql-codegen.yml'], { cwd: monorepoPaths.pkgDataContext, }) const dfd = pDefer()