File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ const amountOfVCPUs = 8;
7
7
8
8
const parallel = `--parallel=${ process . env . CI ? amountOfVCPUs - 1 : maxConcurrentTasks } ` ;
9
9
10
- const linkCommand = `npx nx run-many -t check ${ parallel } ` ;
11
- const nolinkCommand = `npx nx run-many -t check -c production ${ parallel } ` ;
10
+ const linkCommand = `npx nx run-many --no-cloud - t check ${ parallel } ` ;
11
+ const nolinkCommand = `npx nx run-many --no-cloud - t check -c production ${ parallel } ` ;
12
12
13
13
export const check : Task = {
14
14
description : 'Typecheck the source code of the monorepo' ,
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ const amountOfVCPUs = 4;
12
12
const parallel = `--parallel=${ process . env . CI ? amountOfVCPUs - 1 : maxConcurrentTasks } ` ;
13
13
14
14
const linkedContents = `export * from '../../src/manager-api/index.ts';` ;
15
- const linkCommand = `npx nx run-many -t build ${ parallel } ` ;
16
- const noLinkCommand = `npx nx run-many -t build -c production ${ parallel } ` ;
15
+ const linkCommand = `npx nx run-many --no-cloud - t build ${ parallel } ` ;
16
+ const noLinkCommand = `npx nx run-many --no-cloud - t build -c production ${ parallel } ` ;
17
17
18
18
export const compile : Task = {
19
19
description : 'Compile the source code of the monorepo' ,
You can’t perform that action at this time.
0 commit comments