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)
This commit is contained in:
Akos Komuves 2025-06-17 15:22:38 +02:00 committed by GitHub
parent b97222ded4
commit 17507ad023
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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. You can define these task dependencies globally for your workspace in `nx.json` or individually in each project's `project.json` file.