Updates the docs structure, navigation etc to be easier + better suited for showing Nx technology support beyond just TS. **Notes:** - API (`/nx-api`) tab is removed from the navigation (i.e. menu bar), but pages still remain for now until we update references in `*.md` files. - Redirects are set up `/nx-api` to go to their respect new location e.g. `/technologies` or `/reference/core-api` - Old URLs still exist in the sitemap for now, but majority of them will be redirected -- a follow-up PR can remove them. **Preview:** https://nx-dev-git-nx-dev-polyglot-docs-restructure-nrwl.vercel.app/docs --------- Co-authored-by: Jack Hsu <jack.hsu@gmail.com>
46 lines
1.1 KiB
Markdown
46 lines
1.1 KiB
Markdown
# Interface: TargetDependencyConfig
|
|
|
|
## Table of contents
|
|
|
|
### Properties
|
|
|
|
- [dependencies](/reference/core-api/devkit/documents/TargetDependencyConfig#dependencies): boolean
|
|
- [params](/reference/core-api/devkit/documents/TargetDependencyConfig#params): "ignore" | "forward"
|
|
- [projects](/reference/core-api/devkit/documents/TargetDependencyConfig#projects): string | string[]
|
|
- [target](/reference/core-api/devkit/documents/TargetDependencyConfig#target): string
|
|
|
|
## Properties
|
|
|
|
### dependencies
|
|
|
|
• `Optional` **dependencies**: `boolean`
|
|
|
|
If true, the target will be executed for each project that this project depends on.
|
|
Should not be specified together with `projects`.
|
|
|
|
---
|
|
|
|
### params
|
|
|
|
• `Optional` **params**: `"ignore"` \| `"forward"`
|
|
|
|
Configuration for params handling.
|
|
|
|
---
|
|
|
|
### projects
|
|
|
|
• `Optional` **projects**: `string` \| `string`[]
|
|
|
|
A list of projects that have `target`.
|
|
Should not be specified together with `dependencies`.
|
|
|
|
---
|
|
|
|
### target
|
|
|
|
• **target**: `string`
|
|
|
|
The name of the target to run. If `projects` and `dependencies` are not specified,
|
|
the target will be executed for the same project the the current target is running on`.
|