Skip to content

Commit

Permalink
chore: normalize repository URLs
Browse files Browse the repository at this point in the history
In order to address the following warning when publishing:

> npm warn publish npm auto-corrected some errors in your package.json when publishing.  Please run "npm pkg fix" to address these errors.
> npm warn publish errors corrected:
> npm warn publish "repository.url" was normalized to "git+https://github.com/socketio/socket.io.git"
  • Loading branch information
darrachequesne committed Jul 11, 2024
1 parent 0692bed commit b7da542
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/engine.io-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/engine.io-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/engine.io-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/engine.io-parser#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/engine.io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/engine.io#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/socket.io-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-adapter#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/socket.io-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/socket.io-component-emitter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-component-emitter#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/socket.io-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down
2 changes: 1 addition & 1 deletion packages/socket.io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"homepage": "https://github.com/socketio/socket.io/tree/main/packages/socket.io#readme",
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io.git"
"url": "git+https://github.com/socketio/socket.io.git"
},
"bugs": {
"url": "https://github.com/socketio/socket.io/issues"
Expand Down

0 comments on commit b7da542

Please sign in to comment.