Skip to content

Commit

Permalink
Remove reference to resolved Nx issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobLey committed Sep 3, 2024
1 parent 6b7b6d4 commit d6bf328
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <package-name>:<task> --parallel=1`. See [Nx documetation](https://nx.dev/nx-api/nx/documents/run) for more details.
From there, run `nx run <package-name>:<task>`. 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!

Expand All @@ -38,17 +38,14 @@ 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.

## Known issues

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

0 comments on commit d6bf328

Please sign in to comment.