Publish your Nx Plugin
In order to use your plugin in other workspaces or share it with the community, you will need to publish it to an npm registry. To publish your plugin follow these steps:
nx nx-release-publish nx-cfonts
- Follow the prompts from npm.
- That's it!
After that, you can then install your plugin like any other Nx plugin -
❯
nx add nx-cfonts
List your Nx Plugin
Nx provides a utility (nx list
) that lists both core and community plugins. You can submit your plugin to be added to this list, but it needs to meet a few criteria first:
- Run some kind of automated e2e tests in your repository
- Include
@nx/devkit
as adependency
in the plugin'spackage.json
- List a
repository.url
in the plugin'spackage.json
1{
2 "repository": {
3 "type": "git",
4 "url": "https://github.com/nrwl/nx.git",
5 "directory": "packages/web"
6 }
7}
8
We reserve the right to remove unmaintained plugins from the registry. If the plugins become maintained again, they can be resubmitted to the registry.
Once those criteria are met, you can submit your plugin by following the steps below:
- Fork the Nx repo (if you haven't already)
- Update the
community/approved-plugins.json
file with a new entry for your plugin that includes name, url and description - Use the following commit message template:
chore(core): nx plugin submission [PLUGIN_NAME]
- push your changes, and run
pnpm submit-plugin
The
pnpm submit-plugin
command automatically opens the GitHub pull request process with the correct template.
We will then verify the plugin, offer suggestions or merge the pull request!