@visulima/error 6.0.0-alpha.5 → 6.0.0-alpha.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 +33 -0
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## @visulima/error [6.0.0-alpha.7](https://github.com/visulima/visulima/compare/@visulima/error@6.0.0-alpha.6...@visulima/error@6.0.0-alpha.7) (2026-03-26)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **web:** auto-generate packages page from workspace metadata ([623e520](https://github.com/visulima/visulima/commit/623e5207693a7fe720f5f2f179593a3654c880e3))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* update homepage URLs to visulima.com/packages/ format ([be42968](https://github.com/visulima/visulima/commit/be42968129df85fb074224435e33135ff44cab91))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/path:** upgraded to 3.0.0-alpha.7
|
|
15
|
+
|
|
16
|
+
## @visulima/error [6.0.0-alpha.6](https://github.com/visulima/visulima/compare/@visulima/error@6.0.0-alpha.5...@visulima/error@6.0.0-alpha.6) (2026-03-26)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **error:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([1e8ce4c](https://github.com/visulima/visulima/commit/1e8ce4c2b70b9ed58668311f1e38d49a5205a15a))
|
|
21
|
+
* **web:** improve build setup with incremental stats caching and prod install ([fe33e75](https://github.com/visulima/visulima/commit/fe33e75827586779b4b3a0c6d57b39f889ee6207))
|
|
22
|
+
|
|
23
|
+
### Miscellaneous Chores
|
|
24
|
+
|
|
25
|
+
* **error:** migrate deps to pnpm catalogs ([3feaa2b](https://github.com/visulima/visulima/commit/3feaa2b908b770635f0652132382841b05e9e6e3))
|
|
26
|
+
* **error:** update dependencies ([09611be](https://github.com/visulima/visulima/commit/09611be27152da54c6d1354fe584eee3f902b34b))
|
|
27
|
+
* visulima website ([#591](https://github.com/visulima/visulima/issues/591)) ([59ab2e2](https://github.com/visulima/visulima/commit/59ab2e2befb03e51cd2088956f83d9b87de6d033))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* **@visulima/path:** upgraded to 3.0.0-alpha.6
|
|
33
|
+
|
|
1
34
|
## @visulima/error [6.0.0-alpha.5](https://github.com/visulima/visulima/compare/@visulima/error@6.0.0-alpha.4...@visulima/error@6.0.0-alpha.5) (2026-03-06)
|
|
2
35
|
|
|
3
36
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/error",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.7",
|
|
4
4
|
"description": "Error with more than just a message, stacktrace parsing.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"pretty",
|
|
37
37
|
"visulima"
|
|
38
38
|
],
|
|
39
|
-
"homepage": "https://
|
|
39
|
+
"homepage": "https://visulima.com/packages/error/",
|
|
40
40
|
"bugs": {
|
|
41
41
|
"url": "https://github.com/visulima/visulima/issues"
|
|
42
42
|
},
|
|
@@ -99,14 +99,16 @@
|
|
|
99
99
|
"CHANGELOG.md",
|
|
100
100
|
"LICENSE.md"
|
|
101
101
|
],
|
|
102
|
+
"dependencies": {},
|
|
102
103
|
"peerDependencies": {
|
|
103
|
-
"ai": "
|
|
104
|
+
"ai": "6.0.134"
|
|
104
105
|
},
|
|
105
106
|
"peerDependenciesMeta": {
|
|
106
107
|
"ai": {
|
|
107
108
|
"optional": true
|
|
108
109
|
}
|
|
109
110
|
},
|
|
111
|
+
"optionalDependencies": {},
|
|
110
112
|
"engines": {
|
|
111
113
|
"node": ">=22.13 <=25.x"
|
|
112
114
|
},
|