@thi.ng/file-io 1.3.3 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-02-22T23:15:26Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/file-chunks.d.ts CHANGED
@@ -30,6 +30,8 @@ export interface FileChunkOpts {
30
30
  *
31
31
  * @example
32
32
  * ```ts
33
+ * import { fileChunks } from "@thi.ng/file-io";
34
+ *
33
35
  * for await(let buf of fileChunks("file.bin", { start: 16*1024*1024 })) {
34
36
  * // ...
35
37
  * }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/file-io",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "Assorted file I/O utils (with logging support) for NodeJS",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,11 +35,11 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.25",
38
+ "@thi.ng/api": "^8.9.26",
39
39
  "@thi.ng/checks": "^3.5.0",
40
40
  "@thi.ng/hex": "^2.3.37",
41
- "@thi.ng/logger": "^3.0.2",
42
- "@thi.ng/random": "^3.6.32"
41
+ "@thi.ng/logger": "^3.0.3",
42
+ "@thi.ng/random": "^3.6.33"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@microsoft/api-extractor": "^7.40.1",
@@ -120,5 +120,5 @@
120
120
  "status": "stable",
121
121
  "year": 2022
122
122
  },
123
- "gitHead": "16f2b92b5410bd35dcde6c2971c8e62783ebc472\n"
123
+ "gitHead": "6e20f80dd9df1c8055ffa3c1e4d6f7598add0c0b\n"
124
124
  }