There was an error while loading. Please reload this page.
1 parent 5afa923 commit d0bc512Copy full SHA for d0bc512
.changeset/short-buses-share.md
@@ -0,0 +1,5 @@
1
+---
2
+'@graphql-codegen/cli': patch
3
4
+
5
+fix bad concurrency config
packages/graphql-codegen-cli/src/codegen.ts
@@ -383,11 +383,10 @@ export async function executeCodegen(input: CodegenContext | Types.Config): Prom
383
},
384
// It doesn't stop when one of tasks failed, to finish at least some of outputs
385
exitOnError: false,
386
- concurrent: cpus().length,
387
};
388
});
389
390
- return task.newListr(generateTasks);
+ return task.newListr(generateTasks, { concurrent: cpus().length });
391
392
393
],
0 commit comments