From c6ca9b670e93677c2652bc24a47e57246d645643 Mon Sep 17 00:00:00 2001 From: Shedrack Ajaegbu Date: Fri, 24 Nov 2023 00:41:49 +0100 Subject: [PATCH] fix(publish): fix repository URL in package.json Changed the repository URL format in package.json for better compatibility with certain Git clients. The previous URL was not prefixed with "git+", which may have caused clone issues with older or less standard Git clients. --- .npmrc | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 .npmrc diff --git a/.npmrc b/.npmrc deleted file mode 100644 index ae64359..0000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -//registry.npmjs.org/:_authToken=${NPM_TOKEN} diff --git a/package.json b/package.json index 311b66e..c97511d 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Theshedman/password-validator.js.git" + "url": "git+https://github.com/Theshedman/password-validator.js.git" }, "bugs": { "url": "https://github.com/Theshedman/password-validator.js/issues"