From 804dd159f08871f848b25740e90b7b4058b3b3a8 Mon Sep 17 00:00:00 2001 From: heliosalesjr <65938536+heliosalesjr@users.noreply.github.com> Date: Tue, 18 Oct 2022 23:37:12 -0300 Subject: [PATCH 1/2] Update working-with-the-npm-registry.md --- .../working-with-the-npm-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md b/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md index f17d1a1b94..1d880932c4 100644 --- a/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md +++ b/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md @@ -149,7 +149,7 @@ You can use `publishConfig` element in the *package.json* file to specify the re If your instance has subdomain isolation disabled: ```shell "publishConfig": { - "registry":"https://HOSTNAME/_registry/npm/" + "registry": "https://HOSTNAME/_registry/npm/" }, ``` {% endif %} From aa5acce02397df86fb3d503442236e69d4ef19ad Mon Sep 17 00:00:00 2001 From: heliosalesjr <65938536+heliosalesjr@users.noreply.github.com> Date: Wed, 26 Oct 2022 17:41:20 -0300 Subject: [PATCH 2/2] Update working-with-the-npm-registry.md Added the missing space on line 145. --- .../working-with-the-npm-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md b/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md index 1d880932c4..e687fd7b2b 100644 --- a/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md +++ b/content/packages/working-with-a-github-packages-registry/working-with-the-npm-registry.md @@ -142,7 +142,7 @@ You can use `publishConfig` element in the *package.json* file to specify the re {% endif %} ```shell "publishConfig": { - "registry":"https://{% ifversion fpt or ghec %}npm.pkg.github.com{% else %}npm.HOSTNAME/{% endif %}" + "registry": "https://{% ifversion fpt or ghec %}npm.pkg.github.com{% else %}npm.HOSTNAME/{% endif %}" }, ``` {% ifversion ghes %}