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

Commit ae8cf93

Browse files
authored
Merge pull request #864 from ipfs/fix/issue-862
chore: update all the deps, fix #862
2 parents bbb0188 + 2c4dfb3 commit ae8cf93

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

gulpfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ function spawnDaemon (num, callback) {
2828
Discovery: {
2929
MDNS: {
3030
Enabled: false
31+
},
32+
webRTCStar: {
33+
Enabled: false
3134
}
3235
}
3336
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"transform-loader": "^0.2.4"
8989
},
9090
"dependencies": {
91-
"async": "^2.4.0",
91+
"async": "^2.4.1",
9292
"bl": "^1.2.1",
9393
"boom": "^4.3.1",
9494
"cids": "^0.5.0",
@@ -99,14 +99,14 @@
9999
"hapi-set-header": "^1.0.2",
100100
"hoek": "^4.1.1",
101101
"ipfs-api": "^14.0.2",
102-
"ipfs-bitswap": "~0.13.0",
102+
"ipfs-bitswap": "~0.13.1",
103103
"ipfs-block": "~0.6.0",
104-
"ipfs-block-service": "~0.9.0",
104+
"ipfs-block-service": "~0.9.1",
105105
"ipfs-multipart": "~0.1.0",
106-
"ipfs-repo": "~0.13.0",
106+
"ipfs-repo": "~0.13.1",
107107
"ipfs-unixfs": "~0.1.11",
108108
"ipfs-unixfs-engine": "~0.19.1",
109-
"ipld-resolver": "~0.11.0",
109+
"ipld-resolver": "~0.11.1",
110110
"isstream": "^0.1.2",
111111
"joi": "^10.5.0",
112112
"libp2p-floodsub": "~0.9.4",

test/utils/create-repo-node.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ const clean = require('./clean')
55
const series = require('async/series')
66

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

1011
const repo = new IPFSRepo(repoPath)
1112

0 commit comments

Comments
 (0)