Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

chore: update all the deps #864

Merged
merged 1 commit into from
May 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ function spawnDaemon (num, callback) {
Discovery: {
MDNS: {
Enabled: false
},
webRTCStar: {
Enabled: false
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"transform-loader": "^0.2.4"
},
"dependencies": {
"async": "^2.4.0",
"async": "^2.4.1",
"bl": "^1.2.1",
"boom": "^4.3.1",
"cids": "^0.5.0",
Expand All @@ -99,14 +99,14 @@
"hapi-set-header": "^1.0.2",
"hoek": "^4.1.1",
"ipfs-api": "^14.0.2",
"ipfs-bitswap": "~0.13.0",
"ipfs-bitswap": "~0.13.1",
"ipfs-block": "~0.6.0",
"ipfs-block-service": "~0.9.0",
"ipfs-block-service": "~0.9.1",
"ipfs-multipart": "~0.1.0",
"ipfs-repo": "~0.13.0",
"ipfs-repo": "~0.13.1",
"ipfs-unixfs": "~0.1.11",
"ipfs-unixfs-engine": "~0.19.1",
"ipld-resolver": "~0.11.0",
"ipld-resolver": "~0.11.1",
"isstream": "^0.1.2",
"joi": "^10.5.0",
"libp2p-floodsub": "~0.9.4",
Expand Down
3 changes: 2 additions & 1 deletion test/utils/create-repo-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const clean = require('./clean')
const series = require('async/series')

function createTempRepo (repoPath) {
repoPath = repoPath || '/tmp/ipfs-test-' + Math.random().toString().substring(2, 8)
repoPath = repoPath ||
'/tmp/ipfs-test-' + Math.random()

const repo = new IPFSRepo(repoPath)

Expand Down