Use yarn nx over nx

This commit is contained in:
Kasper Peulen 2024-12-04 13:44:07 +01:00
parent e6824cf2b9
commit d6b4e7b6de

View File

@ -7,8 +7,8 @@ const amountOfVCPUs = 8;
const parallel = `--parallel=${process.env.CI ? amountOfVCPUs - 1 : maxConcurrentTasks}`;
const linkCommand = `nx affected -t check ${parallel}`;
const nolinkCommand = `nx affected -t check -c production ${parallel}`;
const linkCommand = `yarn nx affected -t check ${parallel}`;
const nolinkCommand = `yarn nx affected -t check -c production ${parallel}`;
export const check: Task = {
description: 'Typecheck the source code of the monorepo',