@nx/plugin:migration
Create a Migration for an Nx Plugin.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
Create a Migration for an Nx Plugin.
1nx generate migration ...
2
By default, Nx will search for migration
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/plugin:migration ...
2
Show what will be generated without writing to disk:
1nx g migration ... --dry-run
2
Adds a new migration to the project my-plugin
, which will be triggered when migrating to version 1.0.0 or above from a previous version.:
1nx g migration my-migration --project=my-plugin --version=1.0.0
2
Version to use for the migration.
Migration name.
The directory at which to create the migration file. When --nameAndDirectoryFormat=as-provided
, it will be relative to the current working directory. Otherwise, it will be relative to the workspace root.
Migration description.
as-provided
, derived
Whether to generate the migration in the directory as provided, relative to the current working directory and ignoring the project (as-provided
) or generate it using the project and directory relative to the workspace root (derived
).
false
Whether or not to include package.json
updates.
false
Do not eslint configuration for plugin json files.
The name of the project.
Provide the directory
option instead and use the as-provided
format. The project will be determined from the directory provided. It will be removed in Nx v20.