fs-stream-sync 2.0.11 → 2.0.14
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 +48 -0
- package/lib/interface.d.ts +2 -2
- package/lib/internal.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,54 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.14](https://github.com/bluelovers/ws-iconv/compare/fs-stream-sync@2.0.11...fs-stream-sync@2.0.14) (2022-08-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ♻️ Chores
|
|
10
|
+
|
|
11
|
+
* update jest.config.js ([520edae](https://github.com/bluelovers/ws-iconv/commit/520edae6273f468fb194a76486b80432b4d69758))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### 📌 Dependencies
|
|
15
|
+
|
|
16
|
+
* update deps ([6443574](https://github.com/bluelovers/ws-iconv/commit/6443574492a2305365e4d063efe1959010ee67be))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### 🔖 Miscellaneous
|
|
20
|
+
|
|
21
|
+
* . ([9f40e1b](https://github.com/bluelovers/ws-iconv/commit/9f40e1bd5c0e7ce5c336f5bbd3583224b25bd988))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [2.0.13](https://github.com/bluelovers/ws-iconv/compare/fs-stream-sync@2.0.11...fs-stream-sync@2.0.13) (2022-08-11)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### ♻️ Chores
|
|
31
|
+
|
|
32
|
+
* update jest.config.js ([520edae](https://github.com/bluelovers/ws-iconv/commit/520edae6273f468fb194a76486b80432b4d69758))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### 📌 Dependencies
|
|
36
|
+
|
|
37
|
+
* update deps ([6443574](https://github.com/bluelovers/ws-iconv/commit/6443574492a2305365e4d063efe1959010ee67be))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## [2.0.12](https://github.com/bluelovers/ws-iconv/compare/fs-stream-sync@2.0.11...fs-stream-sync@2.0.12) (2022-08-11)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### 📌 Dependencies
|
|
47
|
+
|
|
48
|
+
* update deps ([6443574](https://github.com/bluelovers/ws-iconv/commit/6443574492a2305365e4d063efe1959010ee67be))
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
6
54
|
## [2.0.11](https://github.com/bluelovers/ws-iconv/compare/fs-stream-sync@2.0.9...fs-stream-sync@2.0.11) (2022-05-11)
|
|
7
55
|
|
|
8
56
|
|
package/lib/interface.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
export type { PathLike } from 'fs';
|
|
3
|
-
export
|
|
3
|
+
export type IFsPath = string | Buffer;
|
|
4
4
|
export interface IFsStreamOptions {
|
|
5
5
|
flags?: string;
|
|
6
6
|
/**
|
|
@@ -31,7 +31,7 @@ export interface IFsReadStreamOptions extends IFsStreamOptions {
|
|
|
31
31
|
*/
|
|
32
32
|
highWaterMark?: number;
|
|
33
33
|
}
|
|
34
|
-
export
|
|
34
|
+
export type IFsWriteStreamOptions = IFsStreamOptions;
|
|
35
35
|
export interface IFsStreamState {
|
|
36
36
|
destroyed: boolean;
|
|
37
37
|
sync: boolean;
|
package/lib/internal.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { SyncWriteStream } from '../write-sync';
|
|
|
6
6
|
import { IFsStreamData } from './interface';
|
|
7
7
|
import fs from 'fs';
|
|
8
8
|
export declare const SYM_FS_STREAM_DATA: unique symbol;
|
|
9
|
-
export
|
|
9
|
+
export type IThisFsStream = WriteStream | ReadStream | SyncWriteStream | SyncReadStream;
|
|
10
10
|
export declare function open(thisArgv: IThisFsStream, argv?: any[]): void;
|
|
11
11
|
export declare function _error_emit<T extends Error>(thisArgv: IThisFsStream, e: T): void;
|
|
12
12
|
export declare function __close(thisArgv: IThisFsStream): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fs-stream-sync",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "File System SyncWriteStream/SyncReadStream implementation from Node.js Core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"File System",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@types/node": "*",
|
|
42
42
|
"tslib": "^2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "bdd77f3d3223bb5a9725c7cb591d1ddfa8bbd696"
|
|
45
45
|
}
|