nx/docs/react/cli/migrate.md
2020-11-06 15:56:40 -05:00

61 lines
1.5 KiB
Markdown

# migrate
Creates a migrations file or runs migrations from the migrations file.
- Migrate packages and create migrations.json (e.g., nx migrate @nrwl/workspace@latest)
- Run migrations (e.g., nx migrate --run-migrations=migrations.json)
## Usage
```bash
nx migrate
```
Install `nx` globally to invoke the command directly using `nx`, or use `npm run nx` or `yarn nx`.
### Examples
Update @nrwl/workspace to "next". This will update other packages and will generate migrations.json.:
```bash
nx migrate next
```
Update @nrwl/workspace to "9.0.0". This will update other packages and will generate migrations.json.:
```bash
nx migrate 9.0.0
```
Update @nrwl/workspace and generate the list of migrations starting with version 8.0.0 of @nrwl/workspace and @nrwl/node, regardless of what installed locally.:
```bash
nx migrate @nrwl/workspace@9.0.0 --from="@nrwl/workspace@8.0.0,@nrwl/node@8.0.0"
```
Update @nrwl/workspace to "9.0.0". If it tries to update @nrwl/react or @nrwl/angular, use version "9.0.1".:
```bash
nx migrate @nrwl/workspace@9.0.0 --to="@nrwl/react@9.0.1,@nrwl/angular@9.0.1"
```
Update another-package to "12.0.0". This will update other packages and will generate migrations.json file.:
```bash
nx migrate another-package@12.0.0
```
Run migrations from the migrations.json file. You can modify migrations.json and run this command many times.:
```bash
nx migrate --run-migrations=migrations.json
```
## Options
### help
Show help
### version
Show version number