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

Commit 8018eb4

Browse files
committed
chore: update deps
1 parent c21e032 commit 8018eb4

28 files changed

+48
-49
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"homepage": "https://github.com/ipfs/js-ipfs-mfs#readme",
4040
"devDependencies": {
41-
"aegir": "^18.0.2",
41+
"aegir": "^20.0.0",
4242
"async-iterator-all": "^1.0.0",
4343
"chai": "^4.2.0",
4444
"detect-node": "^2.0.4",
@@ -48,21 +48,21 @@
4848
"ipfs-repo": "~0.27.0",
4949
"ipld": "~0.25.0",
5050
"memdown": "^4.0.0",
51-
"temp-write": "^3.4.0"
51+
"temp-write": "^4.0.0"
5252
},
5353
"dependencies": {
5454
"@hapi/boom": "^7.4.2",
5555
"@hapi/joi": "^15.1.0",
5656
"async-iterator-last": "^1.0.0",
5757
"cids": "~0.7.1",
5858
"debug": "^4.1.0",
59-
"err-code": "^1.1.2",
59+
"err-code": "^2.0.0",
6060
"hamt-sharding": "~0.0.2",
6161
"interface-datastore": "~0.7.0",
6262
"ipfs-multipart": "~0.1.0",
6363
"ipfs-unixfs": "~0.1.16",
64-
"ipfs-unixfs-exporter": "~0.37.6",
65-
"ipfs-unixfs-importer": "~0.39.9",
64+
"ipfs-unixfs-exporter": "~0.38.0",
65+
"ipfs-unixfs-importer": "~0.40.0",
6666
"ipld-dag-pb": "~0.18.0",
6767
"joi-browser": "^13.4.0",
6868
"mortice": "^1.2.1",

src/cli/cp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
},
3838

3939
handler (argv) {
40-
let {
40+
const {
4141
source,
4242
dest,
4343
getIpfs,

src/cli/flush.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
builder: {},
1313

1414
handler (argv) {
15-
let {
15+
const {
1616
path,
1717
getIpfs
1818
} = argv

src/cli/ls.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = {
3838
},
3939

4040
handler (argv) {
41-
let {
41+
const {
4242
path,
4343
getIpfs,
4444
long,

src/cli/mkdir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = {
4242
},
4343

4444
handler (argv) {
45-
let {
45+
const {
4646
path,
4747
getIpfs,
4848
parents,

src/cli/mv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = {
3232
},
3333

3434
handler (argv) {
35-
let {
35+
const {
3636
source,
3737
dest,
3838
getIpfs,

src/cli/read.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
},
2727

2828
handler (argv) {
29-
let {
29+
const {
3030
path,
3131
getIpfs,
3232
offset,

src/cli/rm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
},
2121

2222
handler (argv) {
23-
let {
23+
const {
2424
path,
2525
getIpfs,
2626
recursive

src/cli/stat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Type: <type>`,
4949
},
5050

5151
handler (argv) {
52-
let {
52+
const {
5353
path,
5454
getIpfs,
5555
format,

src/cli/write.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ module.exports = {
8787
},
8888

8989
handler (argv) {
90-
let {
90+
const {
9191
path,
9292
getIpfs,
9393
offset,

0 commit comments

Comments
 (0)