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

Commit 0cdca01

Browse files
committedFeb 27, 2018
chore: update deps
1 parent 2e913c8 commit 0cdca01

7 files changed

+17
-17
lines changed
 

‎package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@
4040
},
4141
"homepage": "https://github.com/ipfs/js-ipfs-unixfs-engine#readme",
4242
"devDependencies": {
43-
"aegir": "^12.2.0",
43+
"aegir": "^13.0.5",
4444
"chai": "^4.1.2",
4545
"dirty-chai": "^2.0.1",
46-
"ipfs": "~0.27.4",
46+
"ipfs": "~0.27.7",
4747
"ipfs-block-service": "~0.13.0",
48-
"ipfs-repo": "~0.18.5",
48+
"ipfs-repo": "~0.18.7",
4949
"ncp": "^2.0.0",
5050
"pre-commit": "^1.2.2",
5151
"pull-generate": "^2.2.0",
5252
"pull-zip": "^2.0.1",
5353
"rimraf": "^2.6.2",
54-
"sinon": "^4.1.3",
54+
"sinon": "^4.4.2",
5555
"split": "^1.0.1"
5656
},
5757
"dependencies": {
@@ -60,20 +60,20 @@
6060
"cids": "~0.5.2",
6161
"deep-extend": "~0.5.0",
6262
"ipfs-unixfs": "~0.1.14",
63-
"ipld-dag-pb": "~0.11.4",
63+
"ipld-dag-pb": "~0.13.1",
6464
"ipld-resolver": "~0.14.1",
6565
"left-pad": "^1.2.0",
66-
"lodash": "^4.17.4",
67-
"multihashes": "~0.4.12",
66+
"lodash": "^4.17.5",
67+
"multihashes": "~0.4.13",
6868
"multihashing-async": "~0.4.8",
6969
"pull-batch": "^1.0.0",
7070
"pull-block": "^1.4.0",
7171
"pull-cat": "^1.1.11",
7272
"pull-pair": "^1.1.0",
7373
"pull-paramap": "^1.2.2",
7474
"pull-pause": "0.0.2",
75-
"pull-pushable": "^2.1.1",
76-
"pull-stream": "^3.6.1",
75+
"pull-pushable": "^2.2.0",
76+
"pull-stream": "^3.6.2",
7777
"pull-traverse": "^1.0.3",
7878
"pull-write": "^1.1.4",
7979
"sparse-array": "^1.3.1"

‎test/chunker-fixed-size.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const expect = chai.expect
88
const pull = require('pull-stream')
99
const loadFixture = require('aegir/fixtures')
1010

11-
const rawFile = loadFixture(__dirname, 'fixtures/1MiB.txt')
11+
const rawFile = loadFixture('test/fixtures/1MiB.txt')
1212

1313
describe('chunker: fixed size', () => {
1414
it('chunks non flat buffers', (done) => {

‎test/exporter-subtree.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const pull = require('pull-stream')
1313
const unixFSEngine = require('./../src')
1414
const exporter = unixFSEngine.exporter
1515

16-
const smallFile = loadFixture(__dirname, 'fixtures/200Bytes.txt')
16+
const smallFile = loadFixture('test/fixtures/200Bytes.txt')
1717

1818
module.exports = (repo) => {
1919
describe('exporter subtree', () => {

‎test/exporter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const loadFixture = require('aegir/fixtures')
1616
const unixFSEngine = require('./../src')
1717
const exporter = unixFSEngine.exporter
1818

19-
const bigFile = loadFixture(__dirname, 'fixtures/1.2MiB.txt')
19+
const bigFile = loadFixture('test/fixtures/1.2MiB.txt')
2020

2121
module.exports = (repo) => {
2222
describe('exporter', () => {

‎test/import-export.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const BlockService = require('ipfs-block-service')
99
const IPLDResolver = require('ipld-resolver')
1010
const pull = require('pull-stream')
1111
const loadFixture = require('aegir/fixtures')
12-
const bigFile = loadFixture(__dirname, 'fixtures/1.2MiB.txt')
12+
const bigFile = loadFixture('test/fixtures/1.2MiB.txt')
1313

1414
const unixFSEngine = require('./../')
1515
const exporter = unixFSEngine.exporter

‎test/importer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ function stringifyMh (files) {
2323
})
2424
}
2525

26-
const bigFile = loadFixture(__dirname, 'fixtures/1.2MiB.txt')
27-
const smallFile = loadFixture(__dirname, 'fixtures/200Bytes.txt')
26+
const bigFile = loadFixture('test/fixtures/1.2MiB.txt')
27+
const smallFile = loadFixture('test/fixtures/200Bytes.txt')
2828

2929
const baseFiles = {
3030
'200Bytes.txt': {

‎test/with-dag-api.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ function stringifyMh (files) {
2323
})
2424
}
2525

26-
const bigFile = loadFixture(__dirname, 'fixtures/1.2MiB.txt')
27-
const smallFile = loadFixture(__dirname, 'fixtures/200Bytes.txt')
26+
const bigFile = loadFixture('test/fixtures/1.2MiB.txt')
27+
const smallFile = loadFixture('test/fixtures/200Bytes.txt')
2828

2929
const baseFiles = {
3030
'200Bytes.txt': {

0 commit comments

Comments
 (0)
This repository has been archived.