Co-authored-by: Isaac Mann <isaacplmann@gmail.com> Co-authored-by: Isaac Mann <isaacplmann@users.noreply.github.com>
54 lines
1.3 KiB
Markdown
54 lines
1.3 KiB
Markdown
---
|
|
title: 'repair - CLI command'
|
|
description: 'Repair any configuration that is no longer supported by Nx.
|
|
|
|
Specifically, this will run every migration within the `nx` package
|
|
against the current repository. Doing so should fix any configuration
|
|
details left behind if the repository was previously updated to a new
|
|
Nx version without using `nx migrate`.
|
|
|
|
If your repository has only ever updated to newer versions of Nx with
|
|
`nx migrate`, running `nx repair` should do nothing.
|
|
'
|
|
---
|
|
|
|
# repair
|
|
|
|
Repair any configuration that is no longer supported by Nx.
|
|
|
|
Specifically, this will run every migration within the `nx` package
|
|
against the current repository. Doing so should fix any configuration
|
|
details left behind if the repository was previously updated to a new
|
|
Nx version without using `nx migrate`.
|
|
|
|
If your repository has only ever updated to newer versions of Nx with
|
|
`nx migrate`, running `nx repair` should do nothing.
|
|
|
|
## Usage
|
|
|
|
```shell
|
|
nx repair
|
|
```
|
|
|
|
Install `nx` globally to invoke the command directly using `nx`, or use `npx nx`, `yarn nx`, or `pnpm nx`.
|
|
|
|
## Options
|
|
|
|
### help
|
|
|
|
Type: `boolean`
|
|
|
|
Show help
|
|
|
|
### verbose
|
|
|
|
Type: `boolean`
|
|
|
|
Prints additional information about the commands (e.g., stack traces)
|
|
|
|
### version
|
|
|
|
Type: `boolean`
|
|
|
|
Show version number
|