From eab7bbdd6d83d501345fdb343c57859f8c46d2e3 Mon Sep 17 00:00:00 2001 From: Jakob Krigovsky Date: Tue, 3 Mar 2020 06:39:08 +0100 Subject: [PATCH] Fix spacing in readme examples (#510) --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index d13da11e..72f862c7 100644 --- a/readme.md +++ b/readme.md @@ -222,7 +222,7 @@ To publish a [private Org-scoped package](https://docs.npmjs.com/creating-and-pu Set the [`registry` option](https://docs.npmjs.com/misc/config#registry) in package.json to the URL of your registry: ```json -"publishConfig":{ +"publishConfig": { "registry": "http://my-internal-registry.local" } ``` @@ -240,7 +240,7 @@ $ npm install --save-dev branchsite ``` ```json -"scripts":{ +"scripts": { "deploy": "np", "postdeploy": "bs" } @@ -293,7 +293,7 @@ npm ERR! 403 Forbidden - GET https://registry.yarnpkg.com/-/package/my-awesome-p …please check whether the command `npm access ls-collaborators my-awesome-package` succeeds. If it does, Yarn has overwritten your registry URL. To fix this, add the correct registry URL to `package.json`: ```json -"publishConfig":{ +"publishConfig": { "registry": "https://registry.npmjs.org" } ```