Configure Custom Registries

To publish JavaScript packages, Nx Release uses the npm CLI under the hood, which defaults to publishing to the npm registry (https://registry.npmjs.org/). If you need to publish to a different registry, you can configure the registry in the .npmrc file in the root of your workspace or at the project level in the project configuration.

Set the Registry in the Root .npmrc File

The easiest way to configure a custom registry is to set it in the npm configuration via the root .npmrc file. This file is located in the root of your workspace, and Nx Release will use it for publishing all projects. To set the registry, add the 'registry' property to your root .npmrc file:

1registry=https://my-custom-registry.com/ 2

Authenticate to the Registry in CI

To authenticate with a custom registry in CI, you can add authentication tokens to the .npmrc file:

1registry=https://my-custom-registry.com/ 2//my-custom-registry.com/:_authToken=<TOKEN> 3

See the npm documentation for more information.

Configure Multiple Registries

The recommended way to determine which registry packages are published to is by using npm scopes. All packages with a name that starts with your scope will be published to the registry specified in the .npmrc file for that scope. Consider the following example:

1@my-scope:registry=https://my-custom-registry.com/ 2//my-custom-registry.com/:_authToken=<TOKEN> 3 4@other-scope:registry=https://my-other-registry.com/ 5//my-other-registry.com/:_authToken=<OTHER_TOKEN> 6 7registry=https://my-default-registry.com/ 8//my-default-registry.com/:_authToken=<DEFAULT_TOKEN> 9

With the above .npmrc, the following packages would be published to the specified registries:

  • @my-scope/pkg-1 -> https://my-custom-registry.com/
  • @other-scope/pkg-2 -> https://my-other-registry.com/
  • pkg-3 -> https://my-default-registry.com/

Specify an Alternate Registry for a Single Package

In some cases, you may want to configure the registry on a per-package basis instead of by scope. This can be done by setting options in the project's configuration.

Authentication

All registries set for specific packages must still have authentication tokens set in the root .npmrc file for publishing in CI. See Authenticate to the Registry in CI for an example.

Set the Registry in the Project Configuration

The project configuration for Nx Release is in two parts - one for the version step and one for the publish step.

Update the Version Step

The version step of Nx Release is responsible for determining the new version of the package. If you have set the version.generatorOptions.currentVersionResolver to 'registry', then Nx Release will check the remote registry for the current version of the package.

Note: If you do not use the 'registry' current version resolver, then this step is not needed.

To set custom registry options for the current version lookup, add the registry and/or tag to the currentVersionResolverMetadata in the project configuration:

1{ 2 "name": "pkg-5", 3 "sourceRoot": "...", 4 "targets": { 5 ... 6 }, 7 "release": { 8 "version": { 9 "generatorOptions": { 10 "currentVersionResolverMetadata": { 11 "registry": "https://my-unique-registry.com/", 12 "tag": "next" 13 } 14 } 15 } 16 } 17} 18

Update the Publish Step

The publish step of Nx Release is responsible for publishing the package to the registry. To set custom registry options for publishing, you can add the registry and/or tag options for the nx-release-publish target in the project configuration:

1{ 2 "name": "pkg-5", 3 "sourceRoot": "...", 4 "targets": { 5 ..., 6 "nx-release-publish": { 7 "options": { 8 "registry": "https://my-unique-registry.com/", 9 "tag": "next" 10 } 11 } 12 } 13} 14

Set the Registry in the Package Manifest

Caution

It is not recommended to set the registry for a package in the 'publishConfig' property of its 'package.json' file. 'npm publish' will always prefer the registry from the 'publishConfig' over the '--registry' argument. Because of this, the '--registry' CLI and programmatic API options of Nx Release will no longer be able to override the registry for purposes such as publishing locally for end to end testing.