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

Commit 03cca04

Browse files
committed
chore: update deps
1 parent 03f4069 commit 03cca04

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/ipfs/js-ipfs-unixfs-exporter#readme",
3939
"devDependencies": {
40-
"aegir": "^19.0.3",
40+
"aegir": "^20.0.0",
4141
"async-iterator-all": "^1.0.0",
4242
"async-iterator-buffer-stream": "^1.0.0",
4343
"async-iterator-first": "^1.0.0",
@@ -55,10 +55,10 @@
5555
"dependencies": {
5656
"async-iterator-last": "^1.0.0",
5757
"cids": "~0.7.1",
58-
"err-code": "^1.1.2",
58+
"err-code": "^2.0.0",
5959
"hamt-sharding": "~0.0.2",
6060
"ipfs-unixfs": "~0.1.16",
61-
"ipfs-unixfs-importer": "~0.39.11"
61+
"ipfs-unixfs-importer": "~0.40.0"
6262
},
6363
"contributors": [
6464
"Alan Shaw <[email protected]>",

src/resolvers/dag-cbor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const CID = require('cids')
44
const errCode = require('err-code')
55

66
const resolve = async (cid, name, path, toResolve, resolve, depth, ipld) => {
7-
let node = await ipld.get(cid)
7+
const node = await ipld.get(cid)
88
let subObject = node
99
let subPath = path
1010

test/exporter.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -626,8 +626,8 @@ describe('exporter', () => {
626626
it('reads files in multiple steps that are split across lots of nodes in really small chunks', async function () {
627627
this.timeout(600 * 1000)
628628

629-
let results = []
630-
let chunkSize = 1024
629+
const results = []
630+
const chunkSize = 1024
631631
let offset = 0
632632

633633
const cid = await addTestFile({

0 commit comments

Comments
 (0)