This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 4 files changed +5
-3
lines changed
4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 42
42
},
43
43
"dependencies" : {
44
44
"abort-controller" : " ^3.0.0" ,
45
- "async-iterator-all" : " ^1.0.0" ,
46
45
"async-iterator-to-pull-stream" : " ^1.3.0" ,
47
46
"bignumber.js" : " ^9.0.0" ,
48
47
"bl" : " ^4.0.0" ,
60
59
"ipld-dag-pb" : " ^0.18.1" ,
61
60
"ipld-raw" : " ^4.0.0" ,
62
61
"is-ipfs" : " ~0.6.1" ,
62
+ "it-all" : " ^1.0.1" ,
63
63
"it-glob" : " 0.0.7" ,
64
64
"it-tar" : " ^1.1.1" ,
65
65
"it-to-stream" : " ^0.1.1" ,
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ module.exports = configure(({ ky }) => {
29
29
if ( options . trickle != null ) searchParams . set ( 'trickle' , options . trickle )
30
30
if ( options . wrapWithDirectory != null ) searchParams . set ( 'wrap-with-directory' , options . wrapWithDirectory )
31
31
if ( options . preload != null ) searchParams . set ( 'preload' , options . preload )
32
+ if ( options . fileImportConcurrency != null ) searchParams . set ( 'file-import-concurrency' , options . fileImportConcurrency )
33
+ if ( options . blockWriteConcurrency != null ) searchParams . set ( 'block-write-concurrency' , options . blockWriteConcurrency )
32
34
33
35
const res = await ky . post ( 'add' , {
34
36
timeout : options . timeout ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const PeerId = require('peer-id')
11
11
const PeerInfo = require ( 'peer-info' )
12
12
const nodeify = require ( 'promise-nodeify' )
13
13
const callbackify = require ( 'callbackify' )
14
- const all = require ( 'async-iterator -all' )
14
+ const all = require ( 'it -all' )
15
15
const toPullStream = require ( 'async-iterator-to-pull-stream' )
16
16
const toStream = require ( 'it-to-stream' )
17
17
const BufferList = require ( 'bl/BufferList' )
Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
3
const toPull = require ( 'async-iterator-to-pull-stream' )
4
- const all = require ( 'async-iterator -all' )
4
+ const all = require ( 'it -all' )
5
5
const toStream = require ( 'it-to-stream' )
6
6
const { Buffer } = require ( 'buffer' )
7
7
You can’t perform that action at this time.
0 commit comments