-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg: fix repository links in package.json files
They need to point to directories under `tree/master` Semver: patch
- Loading branch information
Eric Satterwhite
committed
Apr 27, 2020
1 parent
5048b30
commit a0e05d2
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,13 @@ | |
], | ||
"author": "Eric Satterwhite <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/esatterwhite/skyring/packages/skyring-tcp-transport", | ||
"homepage": "https://github.com/esatterwhite/skyring/tree/master/packages/skyring-tcp-transport", | ||
"engines": { | ||
"node": ">= 8.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/esatterwhite/skyring/packages/skyring-tcp-transport" | ||
"url": "https://github.com/esatterwhite/skyring/tree/master/packages/skyring-tcp-transport" | ||
}, | ||
"bugs": { | ||
"email": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ | |
}, | ||
"author": "Eric Satterwhite <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/esatterwhite/skyring/packages/zmq-transport#readme", | ||
"homepage": "https://github.com/esatterwhite/skyring/tree/master/packages/zmq-transport#readme", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/esatterwhite/skyring/packages/zmq-transport" | ||
"url": "https://github.com/esatterwhite/skyring/tree/master/packages/zmq-transport" | ||
}, | ||
"engines": { | ||
"node": ">=8.0.0" | ||
|