Skip to content

Commit

Permalink
Use yarn nx over nx
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpeulen committed Dec 4, 2024
1 parent e6824cf commit d6b4e7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tasks/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit d6b4e7b

Please sign in to comment.