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

Commit 160860e

Browse files
authored
feat: Wrap with dir (#730)
* feat: add awareness of wrapWithDirectory option to utils/send-files-stream * chore: update interface-ipfs-core * chore: update deps
1 parent 994bdad commit 160860e

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"is-stream": "^1.1.0",
4242
"libp2p-crypto": "^0.12.1",
4343
"lru-cache": "^4.1.2",
44-
"multiaddr": "^3.1.0",
44+
"multiaddr": "^4.0.0",
4545
"multibase": "^0.4.0",
4646
"multihashes": "~0.4.13",
4747
"ndjson": "^1.5.0",
@@ -53,7 +53,7 @@
5353
"pull-pushable": "^2.2.0",
5454
"pump": "^3.0.0",
5555
"qs": "^6.5.1",
56-
"readable-stream": "^2.3.5",
56+
"readable-stream": "^2.3.6",
5757
"stream-http": "^2.8.1",
5858
"stream-to-pull-stream": "^1.7.2",
5959
"streamifier": "^0.1.1",
@@ -76,14 +76,14 @@
7676
"eslint-plugin-react": "^7.7.0",
7777
"go-ipfs-dep": "^0.4.14",
7878
"gulp": "^3.9.1",
79-
"hapi": "^17.2.3",
80-
"interface-ipfs-core": "~0.58.0",
79+
"hapi": "^17.3.1",
80+
"interface-ipfs-core": "~0.60.1",
8181
"ipfs": "~0.28.2",
8282
"ipfsd-ctl": "~0.31.0",
8383
"pre-commit": "^1.2.2",
84-
"pull-stream": "^3.6.2",
85-
"socket.io": "^2.0.4",
86-
"socket.io-client": "^2.0.4",
84+
"pull-stream": "^3.6.7",
85+
"socket.io": "^2.1.0",
86+
"socket.io-client": "^2.1.0",
8787
"stream-equal": "^1.1.1"
8888
},
8989
"pre-commit": [

src/utils/send-files-stream.js

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ module.exports = (send, path) => {
7878
qs['cid-version'] = propOrProp(options, 'cid-version', 'cidVersion')
7979
qs['raw-leaves'] = propOrProp(options, 'raw-leaves', 'rawLeaves')
8080
qs['only-hash'] = propOrProp(options, 'only-hash', 'onlyHash')
81+
qs['wrap-with-directory'] = propOrProp(options, 'wrap-with-directory', 'wrapWithDirectory')
8182
qs.hash = propOrProp(options, 'hash', 'hashAlg')
8283

8384
const args = {

0 commit comments

Comments
 (0)