Skip to content

Commit

Permalink
pkg: switch from git+ssh to git+https for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
braydonf committed Feb 6, 2020
1 parent 02ea73c commit 64403e1
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 97 deletions.
5 changes: 4 additions & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,14 @@ availability. For example, here is an example `package.json`:
```json
{
"dependencies": {
"bcoin": "git+ssh://git@github.com:bcoin-org/bcoin.git#semver:~2.0.0"
"bcoin": "git+https://github.com/bcoin-org/bcoin.git#semver:~2.0.0"
}
}
```
_Note_: While git tags are signed, `npm` will not check the signature
of the git tag.
_Note_: See [Git URLs as Dependencies][giturls] `npm` documentaion for
additional details for using git as a dependency.

If your project shares any dependencies you may want to de-duplicate, you can
do this by running:
Expand Down Expand Up @@ -249,3 +251,4 @@ See [Configuration][configuration].
[keybase]: https://keybase.io/chjj#show-public
[node]: https://nodejs.org
[configuration]: configuration.md
[giturls]: https://docs.npmjs.com/files/package.json.html#git-urls-as-dependencies
128 changes: 64 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,40 +23,40 @@
"node": ">=10.0.0"
},
"dependencies": {
"bcfg": "git+ssh://git@github.com:bcoin-org/bcfg.git#semver:~0.1.6",
"bcrypto": "git+ssh://git@github.com:bcoin-org/bcrypto.git#semver:~3.1.11",
"bcurl": "git+ssh://git@github.com:bcoin-org/bcurl.git#semver:^0.1.6",
"bdb": "git+ssh://git@github.com:bcoin-org/bdb.git#semver:~1.1.7",
"bdns": "git+ssh://git@github.com:bcoin-org/bdns.git#semver:~0.1.5",
"bevent": "git+ssh://git@github.com:bcoin-org/bevent.git#semver:~0.1.5",
"bfile": "git+ssh://git@github.com:bcoin-org/bfile.git#semver:~0.2.1",
"bfilter": "git+ssh://git@github.com:bcoin-org/bfilter.git#semver:~1.0.5",
"bheep": "git+ssh://git@github.com:bcoin-org/bheep.git#semver:~0.1.5",
"binet": "git+ssh://git@github.com:bcoin-org/binet.git#semver:~0.3.5",
"blgr": "git+ssh://git@github.com:bcoin-org/blgr.git#semver:~0.1.7",
"blru": "git+ssh://git@github.com:bcoin-org/blru.git#semver:~0.1.6",
"blst": "git+ssh://git@github.com:bcoin-org/blst.git#semver:~0.1.5",
"bmutex": "git+ssh://git@github.com:bcoin-org/bmutex.git#semver:~0.1.6",
"brq": "git+ssh://git@github.com:bcoin-org/brq.git#semver:~0.1.7",
"bs32": "git+ssh://git@github.com:bcoin-org/bs32.git#semver:=0.1.6",
"bsert": "git+ssh://git@github.com:chjj/bsert.git#semver:~0.0.10",
"bsip": "git+ssh://git@github.com:bcoin-org/bsip.git#semver:~0.1.9",
"bsock": "git+ssh://git@github.com:bcoin-org/bsock.git#semver:~0.1.9",
"bsocks": "git+ssh://git@github.com:bcoin-org/bsocks.git#semver:~0.2.5",
"bstring": "git+ssh://git@github.com:bcoin-org/bstring.git#semver:~0.3.9",
"btcp": "git+ssh://git@github.com:bcoin-org/btcp.git#semver:~0.1.5",
"buffer-map": "git+ssh://git@github.com:chjj/buffer-map.git#semver:~0.0.7",
"bufio": "git+ssh://git@github.com:bcoin-org/bufio.git#semver:~1.0.6",
"bupnp": "git+ssh://git@github.com:bcoin-org/bupnp.git#semver:~0.2.6",
"bval": "git+ssh://git@github.com:bcoin-org/bval.git#semver:~0.1.6",
"bweb": "git+ssh://git@github.com:bcoin-org/bweb.git#semver:=0.1.9",
"loady": "git+ssh://git@github.com:chjj/loady.git#semver:~0.0.1",
"mrmr": "git+ssh://git@github.com:bcoin-org/mrmr.git#semver:~0.1.8",
"n64": "git+ssh://git@github.com:chjj/n64.git#semver:~0.2.10",
"nan": "git+ssh://git@github.com:nodejs/nan.git#semver:=2.14.0"
"bcfg": "git+https://github.com/bcoin-org/bcfg.git#semver:~0.1.6",
"bcrypto": "git+https://github.com/bcoin-org/bcrypto.git#semver:~3.1.11",
"bcurl": "git+https://github.com/bcoin-org/bcurl.git#semver:^0.1.6",
"bdb": "git+https://github.com/bcoin-org/bdb.git#semver:~1.1.7",
"bdns": "git+https://github.com/bcoin-org/bdns.git#semver:~0.1.5",
"bevent": "git+https://github.com/bcoin-org/bevent.git#semver:~0.1.5",
"bfile": "git+https://github.com/bcoin-org/bfile.git#semver:~0.2.1",
"bfilter": "git+https://github.com/bcoin-org/bfilter.git#semver:~1.0.5",
"bheep": "git+https://github.com/bcoin-org/bheep.git#semver:~0.1.5",
"binet": "git+https://github.com/bcoin-org/binet.git#semver:~0.3.5",
"blgr": "git+https://github.com/bcoin-org/blgr.git#semver:~0.1.7",
"blru": "git+https://github.com/bcoin-org/blru.git#semver:~0.1.6",
"blst": "git+https://github.com/bcoin-org/blst.git#semver:~0.1.5",
"bmutex": "git+https://github.com/bcoin-org/bmutex.git#semver:~0.1.6",
"brq": "git+https://github.com/bcoin-org/brq.git#semver:~0.1.7",
"bs32": "git+https://github.com/bcoin-org/bs32.git#semver:=0.1.6",
"bsert": "git+https://github.com/chjj/bsert.git#semver:~0.0.10",
"bsip": "git+https://github.com/bcoin-org/bsip.git#semver:~0.1.9",
"bsock": "git+https://github.com/bcoin-org/bsock.git#semver:~0.1.9",
"bsocks": "git+https://github.com/bcoin-org/bsocks.git#semver:~0.2.5",
"bstring": "git+https://github.com/bcoin-org/bstring.git#semver:~0.3.9",
"btcp": "git+https://github.com/bcoin-org/btcp.git#semver:~0.1.5",
"buffer-map": "git+https://github.com/chjj/buffer-map.git#semver:~0.0.7",
"bufio": "git+https://github.com/bcoin-org/bufio.git#semver:~1.0.6",
"bupnp": "git+https://github.com/bcoin-org/bupnp.git#semver:~0.2.6",
"bval": "git+https://github.com/bcoin-org/bval.git#semver:~0.1.6",
"bweb": "git+https://github.com/bcoin-org/bweb.git#semver:=0.1.9",
"loady": "git+https://github.com/chjj/loady.git#semver:~0.0.1",
"mrmr": "git+https://github.com/bcoin-org/mrmr.git#semver:~0.1.8",
"n64": "git+https://github.com/chjj/n64.git#semver:~0.2.10",
"nan": "git+https://github.com/nodejs/nan.git#semver:=2.14.0"
},
"devDependencies": {
"bmocha": "git+ssh://git@github.com:bcoin-org/bmocha.git#semver:=2.1.2"
"bmocha": "git+https://github.com/bcoin-org/bmocha.git#semver:=2.1.2"
},
"main": "./lib/bcoin.js",
"bin": {
Expand Down

0 comments on commit 64403e1

Please sign in to comment.