Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
deps updated successfully
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed May 18, 2016
1 parent 074d608 commit 3b52eef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const rawPeer = require('./test/peer.json')
const id = Id.createFromPrivKey(rawPeer.privKey)

gulp.task('libnode:start', (done) => {
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/websockets')
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/ws')
const peer = new Peer(id)
peer.multiaddr.add(mh)

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@
},
"homepage": "https://github.com/ipfs/js-libp2p-ipfs-browser#readme",
"devDependencies": {
"aegir": "^3.0.1",
"aegir": "^3.0.4",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"libp2p-ipfs": "^0.3.8",
"libp2p-ipfs": "^0.4.0",
"peer-id": "^0.6.6",
"pre-commit": "^1.1.2"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"libp2p-spdy": "^0.3.1",
"libp2p-swarm": "^0.12.10",
"libp2p-websockets": "^0.4.4",
"multiaddr": "^1.4.1",
"libp2p-spdy": "^0.4.0",
"libp2p-swarm": "^0.14.0",
"libp2p-websockets": "^0.5.0",
"multiaddr": "^2.0.0",
"peer-info": "^0.6.2"
},
"aegir": {
Expand All @@ -60,4 +60,4 @@
"dignifiedquire <dignifiedquire@gmail.com>",
"greenkeeperio-bot <support@greenkeeper.io>"
]
}
}
6 changes: 3 additions & 3 deletions test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('libp2p-ipfs-browser', function () {
})

it('echo', (done) => {
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/websockets')
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/ws')
const peer = new Peer(id)
peer.multiaddr.add(mh)

Expand All @@ -40,7 +40,7 @@ describe('libp2p-ipfs-browser', function () {

describe('stress', () => {
it('one big write', (done) => {
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/websockets')
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/ws')
const peer = new Peer(id)
peer.multiaddr.add(mh)

Expand Down Expand Up @@ -68,7 +68,7 @@ describe('libp2p-ipfs-browser', function () {
})

it('many writes in 2 batches', (done) => {
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/websockets')
const mh = multiaddr('/ip4/127.0.0.1/tcp/9090/ws')
const peer = new Peer(id)
peer.multiaddr.add(mh)

Expand Down

0 comments on commit 3b52eef

Please sign in to comment.