From 17507ad0232b2306a0d12a540783b0517c53d26f Mon Sep 17 00:00:00 2001 From: Akos Komuves Date: Tue, 17 Jun 2025 15:22:38 +0200 Subject: [PATCH] docs(core): update package names for run-task feature (#31617) ## Summary This pull request updates the documentation to reflect changes in project names for task dependencies. The documentation was referring to the `modules-shared-ui` and `modules-products` packages on the chart, but these packages are called differently. ![image](https://github.com/user-attachments/assets/c924ad1f-f13f-4b6c-9f0e-a95317e73987) --- docs/shared/features/run-tasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shared/features/run-tasks.md b/docs/shared/features/run-tasks.md index 2d5439881b..6e8bf636f6 100644 --- a/docs/shared/features/run-tasks.md +++ b/docs/shared/features/run-tasks.md @@ -218,7 +218,7 @@ However, you need to specify for which targets this ordering is important. In th } ``` -This means that if we run `nx build myreactapp`, Nx will first execute `build` on `modules-shared-ui` and `modules-products` before running `build` on `myreactapp`. +This means that if we run `nx build myreactapp`, Nx will first execute `build` on `shared-ui` and `feat-products` before running `build` on `myreactapp`. You can define these task dependencies globally for your workspace in `nx.json` or individually in each project's `project.json` file.