-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update lerna to 5.1 and enable nx (#5759)
* chore: update lerna to 5.1 and enable nx * Dedupe and prettier * fix: builds should run in topological order * Update e2e build script * try increasing timeout for cli tests * try limiting parallelization trying a few things to get CI to pass on Windows * try bumping timeout again * refine the config to max the number of cache hits * fix: make test glob more inclusive * chore: update yarn.lock * fix: build types for api-server and forms * feat: configure test cpu cores for ci * undo cli timeout change Co-authored-by: Daniel Choudhury <[email protected]> Co-authored-by: Dominic Saadi <[email protected]>
- Loading branch information
1 parent
ee191ec
commit 53ae908
Showing
11 changed files
with
1,220 additions
and
920 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": [ | ||
"test", | ||
"build" | ||
], | ||
"parallel": 5 | ||
} | ||
} | ||
}, | ||
"namedInputs": { | ||
"default": [ | ||
"{projectRoot}/**/*" | ||
], | ||
"prod": [ | ||
"!{projectRoot}/**/*.test.{js,jsx,ts,tsx}" | ||
] | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"inputs": [ | ||
"prod", | ||
"^prod" | ||
], | ||
"dependsOn": [ | ||
"^build" | ||
] | ||
}, | ||
"test": { | ||
"inputs": [ | ||
"default", | ||
"^prod" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.