Skip to content

Commit

Permalink
fix(publish): fix repository URL in package.json
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Theshedman committed Nov 23, 2023
1 parent b6af802 commit c6ca9b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c6ca9b6

Please sign in to comment.