ipfs-utils
Advanced tools
Comparing version 6.0.3 to 6.0.4
@@ -0,1 +1,10 @@ | ||
## [6.0.4](https://github.com/ipfs/js-ipfs-utils/compare/v6.0.3...v6.0.4) (2021-03-22) | ||
### Bug Fixes | ||
* allow all supported unixfs time types ([#111](https://github.com/ipfs/js-ipfs-utils/issues/111)) ([72e0097](https://github.com/ipfs/js-ipfs-utils/commit/72e0097accb58eb01480bb47085edfe25ea7bf9a)) | ||
## [6.0.3](https://github.com/ipfs/js-ipfs-utils/compare/v6.0.2...v6.0.3) (2021-03-15) | ||
@@ -2,0 +11,0 @@ |
@@ -9,3 +9,6 @@ declare function _exports(paths: Iterable<string> | AsyncIterable<string> | string, options?: { | ||
mode?: number | undefined; | ||
mtime?: Date | undefined; | ||
mtime?: [number, number] | import("ipfs-unixfs/dist/src/types").Mtime | { | ||
Seconds: number; | ||
FractionalNanoseconds?: number | undefined; | ||
} | Date | undefined; | ||
} | undefined): AsyncGenerator<{ | ||
@@ -19,3 +22,6 @@ path: string; | ||
mode: number | undefined; | ||
mtime: Date | undefined; | ||
mtime: [number, number] | import("ipfs-unixfs/dist/src/types").Mtime | { | ||
Seconds: number; | ||
FractionalNanoseconds?: number | undefined; | ||
} | Date | undefined; | ||
}, void, unknown>; | ||
@@ -22,0 +28,0 @@ export = _exports; |
{ | ||
"name": "ipfs-utils", | ||
"version": "6.0.3", | ||
"version": "6.0.4", | ||
"description": "Package to aggregate shared logic and dependencies for the IPFS ecosystem", | ||
@@ -68,2 +68,3 @@ "main": "src/index.js", | ||
"delay": "^5.0.0", | ||
"ipfs-unixfs": "^4.0.1", | ||
"it-all": "^1.0.4", | ||
@@ -70,0 +71,0 @@ "it-drain": "^1.0.3", |
@@ -20,3 +20,3 @@ 'use strict' | ||
* @param {number} [options.mode] - mode to use - if preserveMode is true this will be ignored | ||
* @param {Date} [options.mtime] - mtime to use - if preserveMtime is true this will be ignored | ||
* @param {import('ipfs-unixfs').MtimeLike} [options.mtime] - mtime to use - if preserveMtime is true this will be ignored | ||
* @yields {Object} File objects in the form `{ path: String, content: AsyncIterator<Buffer> }` | ||
@@ -23,0 +23,0 @@ */ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
66741
1337
9