Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/ipfs-unixfs-exporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"@multiformats/murmur3": "^2.0.0",
"err-code": "^3.0.1",
"hamt-sharding": "^3.0.0",
"interface-blockstore": "^4.0.1",
"interface-blockstore": "^5.0.0",
"ipfs-unixfs": "^11.0.0",
"it-filter": "^2.0.0",
"it-last": "^2.0.0",
Expand All @@ -155,7 +155,7 @@
"devDependencies": {
"@types/sinon": "^10.0.0",
"aegir": "^38.1.2",
"blockstore-core": "^3.0.0",
"blockstore-core": "^4.0.1",
"delay": "^5.0.0",
"ipfs-unixfs-importer": "^14.0.0",
"it-all": "^2.0.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/ipfs-unixfs-importer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@
"err-code": "^3.0.1",
"hamt-sharding": "^3.0.0",
"ipfs-unixfs": "^11.0.0",
"interface-blockstore": "^4.0.1",
"interface-blockstore": "^5.0.0",
"interface-store": "^4.0.0",
"it-all": "^2.0.0",
"it-batch": "^2.0.0",
"it-first": "^2.0.0",
Expand All @@ -176,7 +177,7 @@
},
"devDependencies": {
"aegir": "^38.1.2",
"blockstore-core": "^3.0.0",
"blockstore-core": "^4.0.1",
"it-buffer-stream": "^3.0.0",
"it-drain": "^2.0.0",
"it-last": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-unixfs-importer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { balanced, FileLayout } from './layout/index.js'
import { defaultBufferImporter } from './dag-builder/buffer-importer.js'
import first from 'it-first'
import errcode from 'err-code'
import type { AwaitIterable } from 'blockstore-core/base'
import type { AwaitIterable } from 'interface-store'

export type ByteStream = AwaitIterable<Uint8Array>
export type ImportContent = ByteStream | Uint8Array
Expand Down