@visulima/error 6.0.0-alpha.4 → 6.0.0-alpha.6

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,48 @@
1
+ ## @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)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **error:** use workspace:* for internal [@visulima](https://github.com/visulima) deps ([1e8ce4c](https://github.com/visulima/visulima/commit/1e8ce4c2b70b9ed58668311f1e38d49a5205a15a))
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
+ * **error:** migrate deps to pnpm catalogs ([3feaa2b](https://github.com/visulima/visulima/commit/3feaa2b908b770635f0652132382841b05e9e6e3))
11
+ * **error:** update dependencies ([09611be](https://github.com/visulima/visulima/commit/09611be27152da54c6d1354fe584eee3f902b34b))
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
+
19
+ ## @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)
20
+
21
+ ### Bug Fixes
22
+
23
+ * **error:** update packem to 2.0.0-alpha.54 ([bd3a938](https://github.com/visulima/visulima/commit/bd3a938b9465147803d06a82018b539ed4c121c8))
24
+
25
+ ### Documentation
26
+
27
+ * **error,error-handler,ono,inspector,source-map,vite-overlay:** add comprehensive Fumadocs documentation ([a0c8c92](https://github.com/visulima/visulima/commit/a0c8c92949cff2730fc6122f717fe344c030f366))
28
+
29
+ ### Styles
30
+
31
+ * **error:** format LICENSE.md ([ea3bdd3](https://github.com/visulima/visulima/commit/ea3bdd34bfd46cbf02a0293ce407d6732e4d2263))
32
+
33
+ ### Miscellaneous Chores
34
+
35
+ * **error-debugging:** update dependencies ([6002ece](https://github.com/visulima/visulima/commit/6002ece1803b2ba8261cff42a362dd6e8ddcc3ee))
36
+ * **error:** update dependencies ([4d22f31](https://github.com/visulima/visulima/commit/4d22f315f164ccaa50c88dcb7d0dd85b58bfbf5a))
37
+ * move top-level examples into their respective packages ([3bf7105](https://github.com/visulima/visulima/commit/3bf7105a56db6383ae65d5e28dea9a2c18af791a))
38
+ * update lock file maintenance ([d83e716](https://github.com/visulima/visulima/commit/d83e71697b75d24704185b66bb521a934d2db02d))
39
+ * year update ([47f4105](https://github.com/visulima/visulima/commit/47f410596ce7190cfea36a073db32e0cec50bbcd))
40
+
41
+
42
+ ### Dependencies
43
+
44
+ * **@visulima/path:** upgraded to 3.0.0-alpha.5
45
+
1
46
  ## @visulima/error [6.0.0-alpha.4](https://github.com/visulima/visulima/compare/@visulima/error@6.0.0-alpha.3...@visulima/error@6.0.0-alpha.4) (2026-01-17)
2
47
 
3
48
  ### ⚠ BREAKING CHANGES
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 visulima
3
+ Copyright (c) 2026 visulima
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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
@@ -4,7 +4,7 @@ const _process = globalThis.process || /* @__PURE__ */ Object.create(null);
4
4
  const processShims = {
5
5
  versions: {}
6
6
  };
7
- const process = new Proxy(_process, {
7
+ const process = /* @__PURE__ */ new Proxy(_process, {
8
8
  get(target, property) {
9
9
  if (property in target) {
10
10
  return target[property];
package/dist/index.js CHANGED
@@ -4,13 +4,13 @@ export { default as aiPrompt } from './solution/ai/ai-prompt.js';
4
4
  export { default as aiSolutionResponse } from './packem_shared/aiSolutionResponse-CJBMLS9t.js';
5
5
  export { default as errorHintFinder } from './packem_shared/errorHintFinder-DEaeRnRW.js';
6
6
  export { default as ruleBasedFinder } from './packem_shared/ruleBasedFinder-C2F8rQ30.js';
7
+ export { default as NonError } from './packem_shared/NonError-D5FGLYKY.js';
7
8
  export { default as captureRawStackTrace } from './packem_shared/captureRawStackTrace-ySw7cU0U.js';
8
9
  export { default as deserializeError } from './packem_shared/deserializeError-BsFrjsrV.js';
9
10
  export { default as getErrorCauses } from './packem_shared/getErrorCauses-DpUsmuqw.js';
10
- export { default as NonError } from './packem_shared/NonError-D5FGLYKY.js';
11
11
  export { default as parseStacktrace } from './packem_shared/parseStacktrace-oQvk7wYp.js';
12
- export { addKnownErrorConstructor, isErrorLike } from './packem_shared/addKnownErrorConstructor-s_3SsXtQ.js';
13
12
  export { VisulimaError, isVisulimaError } from './packem_shared/isVisulimaError-DA7QsCxH.js';
13
+ export { addKnownErrorConstructor, isErrorLike } from './packem_shared/addKnownErrorConstructor-s_3SsXtQ.js';
14
+ export { formatStackFrameLine, formatStacktrace } from './packem_shared/formatStackFrameLine-D3_6oSWZ.js';
14
15
  export { renderError } from './packem_shared/renderError-C30PRFtU.js';
15
16
  export { serialize as serializeError } from './packem_shared/serializeError-e9YW13-X.js';
16
- export { formatStackFrameLine, formatStacktrace } from './packem_shared/formatStackFrameLine-D3_6oSWZ.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/error",
3
- "version": "6.0.0-alpha.4",
3
+ "version": "6.0.0-alpha.6",
4
4
  "description": "Error with more than just a message, stacktrace parsing.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -99,14 +99,16 @@
99
99
  "CHANGELOG.md",
100
100
  "LICENSE.md"
101
101
  ],
102
+ "dependencies": {},
102
103
  "peerDependencies": {
103
- "ai": "^5.0.68"
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
  },