From d6bf3287290523c446eb0610df815d81ee885c2c Mon Sep 17 00:00:00 2001 From: Jacob Ley Date: Tue, 3 Sep 2024 00:54:04 +0000 Subject: [PATCH] Remove reference to resolved Nx issue --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 50b8a60..49e9748 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This repo is designed to be used in a [DevContainer](https://code.visualstudio.c Run `pnpm i` to get started. -From there, run `nx run : --parallel=1`. See [Nx documetation](https://nx.dev/nx-api/nx/documents/run) for more details. +From there, run `nx run :`. See [Nx documetation](https://nx.dev/nx-api/nx/documents/run) for more details. Many tasks are broken down into subtasks to manage the various steps required. For example a typescript build script may perform some codegen before generating the final `.js` files. See the [nx-lifecyle](./apps/nx-lifecycle) package to see how we manage this! @@ -38,7 +38,7 @@ Some standard tasks are: - test - Runs full test suite for package -Try running `nx run-many -t test --parallel=1` to build, analyze, and test the entire package! +Try running `nx run-many -t test` to build, analyze, and test the entire package! See individual packages for documentation. @@ -46,9 +46,6 @@ See individual packages for documentation. There are a few known issues that impact this monorepo as a whole (per-package issues are tracked separately): -- Nx is not able to run more than one task in parallel - - https://github.com/nrwl/nx/issues/22574 - - Workaround is to amend `--parallel=1` to all executions - Nx does not maintain dependency graph for target overloads - - https://github.com/nrwl/nx/issues/26928 + - https://github.com/nrwl/nx/issues/26929 - Workaround is to explicitly copy `dependsOn` to all targets \ No newline at end of file