The workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.
Creating Local Generators
Codifying your organization's best practices into local generators is a great way to ensure that the best practices are easy to follow and implement. Running nx g @nrwl/nx-plugin:plugin feature
will create a local plugin with a generator which is written the same way generators are written for Nx plugins.
See more about local generators
Reorganizing Projects
After some time of working within a workspace, projects might need to be moved or sometimes even removed. The workspace plugin provides the @nrwl/workspace:move
and @nrwl/workspace:remove
generators to help aid with this.
Moving Projects
Running nx g @nrwl/workspace:move --projectName my-lib --destination new/location/my-lib
will move the my-lib
library to libs/new/location/my-lib
.
Moving the files manually can be done easily but a lot of steps are often missed when projects are moved. This generator will also handle the following:
- The project's files will be moved
- The project will be renamed to
new-location-my-lib
- The path mapping in
tsconfig.base.json
will be changed to@npmScope/new/location/my-lib
- Imports in other projects will be changed to
@npmScope/new/location/my-lib
- Paths in target options such as output path will be changed
- Other configuration will be updated too, such as
extends
intsconfig.json
, the name of the project injest.config.js
, and the extends in.eslintrc.json
See more about
@nrwl/workspace:move
Removing Projects
Running nx g @nrwl/workspace:remove my-lib
will remove the my-lib
from the workspace. It is important to note that sometimes, projects cannot be removed if they are still depended on by other projects.
Like when moving projects, some steps are often missed when removing projects. This generator will also handle the following:
- Checks if other projects depend on the project being removed. This can be ignored via the
--forceRemove
flag. - The project's files will be deleted.
- The project's configuration will be removed.
- The path mapping in
tsconfig.base.json
will be removed.
See more about
@nrwl/workspace:remove
Running custom commands
Executors provide an optimized way of running targets but unfortunately, not every target has an executor written for it. The nx:run-commands
executor is an executor that runs any command or multiple commands in the shell. This can be useful when integrating with other tools which do not have an executor provided. There is also a generator to help configure this executor.
Running nx g @nrwl/workspace:run-commands printhello --project my-feature-lib --command 'echo hello'
will create a my-feature-lib:printhello
target that executes echo hello
in the shell.
See more about
nx:run-commands