Skip to content

Commit a83a0dd

Browse files
committedApr 9, 2021
chore: update deps
1 parent b1b316e commit a83a0dd

File tree

2 files changed

+21
-23
lines changed

2 files changed

+21
-23
lines changed
 

‎.aegir.js

+14-16
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,20 @@ const { createServer } = require('ipfsd-ctl')
44
let server
55

66
module.exports = {
7-
hooks: {
8-
browser: {
9-
pre: async () => {
10-
server = createServer({
11-
host: '127.0.0.1',
12-
port: 57483
13-
}, {
14-
type: 'go',
15-
ipfsHttpModule: require('ipfs-http-client'),
16-
ipfsBin: require('go-ipfs').path(),
17-
test: true
18-
})
7+
test: {
8+
before: async () => {
9+
server = createServer({
10+
host: '127.0.0.1',
11+
port: 57483
12+
}, {
13+
type: 'go',
14+
ipfsHttpModule: require('ipfs-http-client'),
15+
ipfsBin: require('go-ipfs').path(),
16+
test: true
17+
})
1918

20-
await server.start()
21-
},
22-
post: () => server.stop()
23-
}
19+
await server.start()
20+
},
21+
after: () => server.stop()
2422
}
2523
}

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
"coverage": "aegir coverage"
1919
},
2020
"devDependencies": {
21-
"aegir": "^29.1.0",
22-
"go-ipfs": "^0.7.0",
23-
"ipfs-http-client": "^48.1.2",
24-
"ipfs-utils": "^5.0.1",
25-
"ipfsd-ctl": "^7.0.2",
21+
"aegir": "^33.0.0",
22+
"go-ipfs": "^0.8.0",
23+
"ipfs-http-client": "^49.0.4",
24+
"ipfs-utils": "^6.0.6",
25+
"ipfsd-ctl": "^7.2.0",
2626
"it-all": "^1.0.0",
2727
"it-drain": "^1.0.0",
2828
"peer-id": "^0.14.0",
29-
"uint8arrays": "^1.1.0"
29+
"uint8arrays": "^2.1.4"
3030
},
3131
"dependencies": {
3232
"debug": "^4.1.1",
3333
"it-drain": "^1.0.3",
34-
"multiaddr": "^8.0.0",
34+
"multiaddr": "^9.0.1",
3535
"p-defer": "^3.0.0",
3636
"p-queue": "^6.2.1"
3737
},

0 commit comments

Comments
 (0)
Please sign in to comment.