@nrwl/angular:move
Move an Angular project to another folder in the workspace.
Usage
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/angular:move ...
Show what will be generated without writing to disk:
nx g move ... --dry-run
Examples
Move libs/my-feature-lib to libs/shared/my-feature-lib.:
nx g @nrwl/angular:move --project my-feature-lib --destination shared/my-feature-lib