@nx/workspace:remove
Remove a project from the workspace.
Remove a project from the workspace.
nx generate remove ...
nx g rm ... #same
By default, Nx will search for remove
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nx/workspace:remove ...
Show what will be generated without writing to disk:
nx g remove ... --dry-run
Remove my-feature-lib
from the workspace:
nx g @nrwl/workspace:remove my-feature-lib
Force removal of my-feature-lib
from the workspace:
nx g @nrwl/workspace:remove my-feature-lib --forceRemove
The name of the project to remove.
false
When true
, forces removal even if the project is still in use.
The library name used at creation time
false
Skip formatting files.