@nrwl/workspace:move
Move a project to another folder in the workspace.
Move a project to another folder in the workspace.
nx generate move ...
nx g mv ... #same
By default, Nx will search for move
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/workspace:move ...
Show what will be generated without writing to disk:
nx g move ... --dry-run
Move libs/my-feature-lib
to libs/shared/my-feature-lib
:
nx g @nrwl/workspace:move --project my-feature-lib --destination shared/my-feature-lib
The folder to move the project into.
The name of the project to move.
The new import path to use in the tsconfig.base.json
.
true
Should the generator update the import path to reflect the new location?
false
Skip formatting files.