@alwatr/node-fs 5.5.6 → 5.5.7
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 +6 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## [5.5.7](https://github.com/Alwatr/nanolib/compare/@alwatr/node-fs@5.5.6...@alwatr/node-fs@5.5.7) (2025-09-01)
|
|
7
|
+
|
|
8
|
+
### 🔗 Dependencies update
|
|
9
|
+
|
|
10
|
+
* update lerna-lite dependencies to version 4.7.3 and jest to 30.1.2 ([95d7870](https://github.com/Alwatr/nanolib/commit/95d7870ec7ad1e6ed2688bafddcabf46857f6981))
|
|
11
|
+
|
|
6
12
|
## [5.5.6](https://github.com/Alwatr/nanolib/compare/@alwatr/node-fs@5.5.5...@alwatr/node-fs@5.5.6) (2025-08-23)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @alwatr/node-fs
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/node-fs v5.5.
|
|
1
|
+
/* @alwatr/node-fs v5.5.7 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -43,7 +43,7 @@ var import_flat_string = require("@alwatr/flat-string");
|
|
|
43
43
|
var import_async_queue = require("@alwatr/async-queue");
|
|
44
44
|
var import_logger = require("@alwatr/logger");
|
|
45
45
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
46
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/node-fs", "5.5.
|
|
46
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/node-fs", "5.5.7");
|
|
47
47
|
var logger = /* @__PURE__ */ (0, import_logger.createLogger)("@alwatr/node-fs");
|
|
48
48
|
var asyncQueue = /* @__PURE__ */ new import_async_queue.AsyncQueue();
|
|
49
49
|
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/node-fs v5.5.
|
|
1
|
+
/* @alwatr/node-fs v5.5.7 */
|
|
2
2
|
|
|
3
3
|
// src/read-file.ts
|
|
4
4
|
import { readFileSync as readFileSync_ } from "node:fs";
|
|
@@ -9,7 +9,7 @@ import { flatString } from "@alwatr/flat-string";
|
|
|
9
9
|
import { AsyncQueue } from "@alwatr/async-queue";
|
|
10
10
|
import { createLogger } from "@alwatr/logger";
|
|
11
11
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
12
|
-
__dev_mode__: packageTracer.add("@alwatr/node-fs", "5.5.
|
|
12
|
+
__dev_mode__: packageTracer.add("@alwatr/node-fs", "5.5.7");
|
|
13
13
|
var logger = /* @__PURE__ */ createLogger("@alwatr/node-fs");
|
|
14
14
|
var asyncQueue = /* @__PURE__ */ new AsyncQueue();
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/node-fs",
|
|
3
3
|
"description": "Enhanced file system operations in Node.js with asynchronous queue to prevent parallel writes.",
|
|
4
|
-
"version": "5.5.
|
|
4
|
+
"version": "5.5.7",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"bugs": "https://github.com/Alwatr/nanolib/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@alwatr/async-queue": "5.5.
|
|
9
|
-
"@alwatr/flat-string": "5.5.
|
|
10
|
-
"@alwatr/logger": "5.5.
|
|
11
|
-
"@alwatr/package-tracer": "5.5.
|
|
8
|
+
"@alwatr/async-queue": "5.5.7",
|
|
9
|
+
"@alwatr/flat-string": "5.5.7",
|
|
10
|
+
"@alwatr/logger": "5.5.7",
|
|
11
|
+
"@alwatr/package-tracer": "5.5.7"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@alwatr/nano-build": "6.0.
|
|
14
|
+
"@alwatr/nano-build": "6.0.2",
|
|
15
15
|
"@alwatr/prettier-config": "5.0.2",
|
|
16
16
|
"@alwatr/tsconfig-base": "5.0.2",
|
|
17
17
|
"@alwatr/type-helper": "5.4.4",
|
|
18
|
-
"@types/node": "^22.
|
|
18
|
+
"@types/node": "^22.18.0",
|
|
19
19
|
"typescript": "^5.9.2"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
},
|
|
86
86
|
"type": "module",
|
|
87
87
|
"types": "./dist/main.d.ts",
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "6f70c2ae343582774a7fa8694684fabb4c5ce63c"
|
|
89
89
|
}
|