From fd58917bf90854c9762d2bd8a3818c7414289969 Mon Sep 17 00:00:00 2001 From: Martin Lopes Date: Mon, 1 Sep 2025 14:20:04 +1000 Subject: [PATCH] Updates example registry URL Updates the URL for the example registry, and adds a note about changing this to the actual path. --- docs/pipelines/ecosystems/customize-javascript.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/pipelines/ecosystems/customize-javascript.md b/docs/pipelines/ecosystems/customize-javascript.md index c959b56c77b..18710fb44d5 100644 --- a/docs/pipelines/ecosystems/customize-javascript.md +++ b/docs/pipelines/ecosystems/customize-javascript.md @@ -601,9 +601,11 @@ The next example publishes to a custom registry defined in your repo's `.npmrc` inputs: command: publish publishRegistry: useExternalRegistry - publishEndpoint: https://my.npmregistry.com + publishEndpoint: https://your-registry.example.com ``` +- Replace `your-registry.example.com` with the URL of your npm registry. + The final example publishes the module to an Azure DevOps Services package management feed. ```yaml @@ -611,9 +613,11 @@ The final example publishes the module to an Azure DevOps Services package manag inputs: command: publish publishRegistry: useFeed - publishFeed: https://my.npmregistry.com + publishFeed: https://your-registry.example.com ``` +- Replace `your-registry.example.com` with the URL of your npm registry. + For more information about versioning and publishing npm packages, see [Publish npm packages](../artifacts/npm.md) and [How can I version my npm packages as part of the build process?](#q-how-can-i-version-my-npm-packages-as-part-of-the-build-process). ### Deploy a web app