@visulima/fs 5.0.0-alpha.4 → 5.0.0-alpha.5

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,3 +1,22 @@
1
+ ## @visulima/fs [5.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/fs@5.0.0-alpha.4...@visulima/fs@5.0.0-alpha.5) (2026-03-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **fs:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([419339e](https://github.com/visulima/visulima/commit/419339ec3b90bb2e4405b5430186e20a577dc997))
6
+ * **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * **fs:** migrate deps to pnpm catalogs ([02ac1ae](https://github.com/visulima/visulima/commit/02ac1ae0b0b864c43ed6711aef2956a18e8fd528))
11
+ * **fs:** update dependencies ([2f21870](https://github.com/visulima/visulima/commit/2f21870e83b4eb55a80e5bbf7144ff0642fbc347))
12
+ * visulima website ([#591](https://github.com/visulima/visulima/issues/591)) ([59ab2e2](https://github.com/visulima/visulima/commit/59ab2e2befb03e51cd2088956f83d9b87de6d033))
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * **@visulima/path:** upgraded to 3.0.0-alpha.6
18
+ * **@visulima/error:** upgraded to 6.0.0-alpha.6
19
+
1
20
  ## @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
21
 
3
22
  ### Bug Fixes
package/LICENSE.md CHANGED
@@ -34,7 +34,7 @@ Repository: git+https://github.com/visulima/visulima.git
34
34
 
35
35
  > MIT License
36
36
  >
37
- > Copyright (c) 2025 visulima
37
+ > Copyright (c) 2026 visulima
38
38
  >
39
39
  > Permission is hereby granted, free of charge, to any person obtaining a copy
40
40
  > of this software and associated documentation files (the "Software"), to deal
@@ -68,7 +68,7 @@ Repository: git+https://github.com/visulima/visulima.git
68
68
  >
69
69
  > > MIT License
70
70
  > >
71
- > > Copyright (c) 2025 visulima
71
+ > > Copyright (c) 2026 visulima
72
72
  > >
73
73
  > > Permission is hereby granted, free of charge, to any person obtaining a copy
74
74
  > > of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/fs",
3
- "version": "5.0.0-alpha.4",
3
+ "version": "5.0.0-alpha.5",
4
4
  "description": "Human friendly file system utilities for Node.js",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -113,17 +113,18 @@
113
113
  "LICENSE.md"
114
114
  ],
115
115
  "dependencies": {
116
- "@visulima/path": "3.0.0-alpha.5",
117
- "type-fest": "^5.4.4"
116
+ "@visulima/path": "3.0.0-alpha.6",
117
+ "type-fest": "5.5.0"
118
118
  },
119
119
  "peerDependencies": {
120
- "yaml": "^2.7.1"
120
+ "yaml": "2.8.3"
121
121
  },
122
122
  "peerDependenciesMeta": {
123
123
  "yaml": {
124
124
  "optional": true
125
125
  }
126
126
  },
127
+ "optionalDependencies": {},
127
128
  "engines": {
128
129
  "node": ">=22.13 <=25.x"
129
130
  },