@visulima/fs 5.0.0-alpha.3 → 5.0.0-alpha.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 +24 -0
- package/LICENSE.md +1 -1
- package/dist/index.js +2 -2
- package/dist/packem_shared/{parseJson-C8xb-3LR.js → parseJson-Cnex0kz2.js} +1 -1
- package/dist/packem_shared/{readJson-vddQ97Ll.js → readJson-CJF1t7xB.js} +1 -1
- package/dist/packem_shared/{readJsonSync-DzeAdYZl.js → readJsonSync-ciofT7AF.js} +1 -1
- package/dist/size.js +3 -3
- package/dist/utils.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## @visulima/fs [5.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/fs@5.0.0-alpha.3...@visulima/fs@5.0.0-alpha.4) (2026-03-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **fs:** update packem to 2.0.0-alpha.54 ([017eb8b](https://github.com/visulima/visulima/commit/017eb8bc3608d01bf78c6cb3732591d6e234cfa3))
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* **object,redact,colorize,path,fs:** add comprehensive Fumadocs documentation ([19c3840](https://github.com/visulima/visulima/commit/19c384041db855e1c2de41ce2067458b39737565))
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* **filesystem:** update dependencies ([d1a4591](https://github.com/visulima/visulima/commit/d1a45917ba9547a1d7f1b6f62d85ab99bc059dd4))
|
|
14
|
+
* **fs:** update dependencies ([5b63f2b](https://github.com/visulima/visulima/commit/5b63f2bd2a83467a54b2247dbf0c41576e31185d))
|
|
15
|
+
* **fs:** update dependencies ([05c4ca6](https://github.com/visulima/visulima/commit/05c4ca60f967ff859ed1d76dcdfa1c521227a533))
|
|
16
|
+
* update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
|
|
17
|
+
* year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* **@visulima/path:** upgraded to 3.0.0-alpha.5
|
|
23
|
+
* **@visulima/error:** upgraded to 6.0.0-alpha.5
|
|
24
|
+
|
|
1
25
|
## @visulima/fs [5.0.0-alpha.3](https://github.com/visulima/visulima/compare/@visulima/fs@5.0.0-alpha.2...@visulima/fs@5.0.0-alpha.3) (2025-12-27)
|
|
2
26
|
|
|
3
27
|
### Bug Fixes
|
package/LICENSE.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -19,8 +19,8 @@ export { default as isAccessibleSync } from './packem_shared/isAccessibleSync-DI
|
|
|
19
19
|
export { move, moveSync, rename, renameSync } from './packem_shared/move-DbpW5_vA.js';
|
|
20
20
|
export { default as readFile } from './packem_shared/readFile-Iz7kvCCk.js';
|
|
21
21
|
export { default as readFileSync } from './packem_shared/readFileSync-6GEIrOnl.js';
|
|
22
|
-
export { default as readJson } from './packem_shared/readJson-
|
|
23
|
-
export { default as readJsonSync } from './packem_shared/readJsonSync-
|
|
22
|
+
export { default as readJson } from './packem_shared/readJson-CJF1t7xB.js';
|
|
23
|
+
export { default as readJsonSync } from './packem_shared/readJsonSync-ciofT7AF.js';
|
|
24
24
|
export { default as emptyDir } from './packem_shared/emptyDir-CYB5Tict.js';
|
|
25
25
|
export { default as emptyDirSync } from './packem_shared/emptyDirSync-BD8-1Ytl.js';
|
|
26
26
|
export { default as remove } from './packem_shared/remove-_oDY3uKo.js';
|
|
@@ -5,7 +5,7 @@ const _process = globalThis.process || /* @__PURE__ */ Object.create(null);
|
|
|
5
5
|
const processShims = {
|
|
6
6
|
versions: {}
|
|
7
7
|
};
|
|
8
|
-
const process = new Proxy(_process, {
|
|
8
|
+
const process = /* @__PURE__ */ new Proxy(_process, {
|
|
9
9
|
get(target, property) {
|
|
10
10
|
if (property in target) {
|
|
11
11
|
return target[property];
|
package/dist/size.js
CHANGED
|
@@ -36,10 +36,10 @@ const {
|
|
|
36
36
|
URL
|
|
37
37
|
} = __cjs_getBuiltinModule("node:url");
|
|
38
38
|
const {
|
|
39
|
-
gzipSync,
|
|
40
39
|
brotliCompressSync,
|
|
41
|
-
|
|
42
|
-
createGzip
|
|
40
|
+
gzipSync,
|
|
41
|
+
createGzip,
|
|
42
|
+
createBrotliCompress
|
|
43
43
|
} = __cjs_getBuiltinModule("node:zlib");
|
|
44
44
|
import { toPath } from '@visulima/path/utils';
|
|
45
45
|
|
package/dist/utils.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as JSONError } from './packem_shared/JSONError-BkHRnInH.js';
|
|
2
2
|
export { default as assertValidFileContents } from './packem_shared/assertValidFileContents-BmcLtsGd.js';
|
|
3
3
|
export { default as assertValidFileOrDirectoryPath } from './packem_shared/assertValidFileOrDirectoryPath-8HANmVjk.js';
|
|
4
|
-
export { default as parseJson } from './packem_shared/parseJson-
|
|
4
|
+
export { default as parseJson } from './packem_shared/parseJson-Cnex0kz2.js';
|
|
5
5
|
export { default as stripJsonComments } from './packem_shared/stripJsonComments-vo4k0mpF.js';
|
|
6
6
|
export { toPath } from '@visulima/path/utils';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/fs",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.4",
|
|
4
4
|
"description": "Human friendly file system utilities for Node.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
"LICENSE.md"
|
|
114
114
|
],
|
|
115
115
|
"dependencies": {
|
|
116
|
-
"@visulima/path": "3.0.0-alpha.
|
|
117
|
-
"type-fest": "^5.
|
|
116
|
+
"@visulima/path": "3.0.0-alpha.5",
|
|
117
|
+
"type-fest": "^5.4.4"
|
|
118
118
|
},
|
|
119
119
|
"peerDependencies": {
|
|
120
120
|
"yaml": "^2.7.1"
|