@visulima/vite-overlay 1.3.1 → 1.3.3
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 +22 -0
- package/README.md +2 -2
- package/dist/index.js +99 -99
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## @visulima/vite-overlay [1.3.3](https://github.com/visulima/visulima/compare/@visulima/vite-overlay@1.3.2...@visulima/vite-overlay@1.3.3) (2025-10-22)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **vite-overlay:** fix [#556](https://github.com/visulima/visulima/issues/556) broken args split on the console overwrite ([6e68419](https://github.com/visulima/visulima/commit/6e684196e66e772ebb3f4d842cf2b97ffc211d29))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* update package dependencies and configurations ([7bfe7e7](https://github.com/visulima/visulima/commit/7bfe7e71869580900aab50efb064b4293994ed9a))
|
|
10
|
+
|
|
11
|
+
## @visulima/vite-overlay [1.3.2](https://github.com/visulima/visulima/compare/@visulima/vite-overlay@1.3.1...@visulima/vite-overlay@1.3.2) (2025-10-21)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* allowed node v25 ([ffaa4b1](https://github.com/visulima/visulima/commit/ffaa4b1ce46b7153594f051f08f9ab7b2686d6ee))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* **@visulima/error:** upgraded to 5.0.2
|
|
21
|
+
* **@visulima/path:** upgraded to 2.0.1
|
|
22
|
+
|
|
1
23
|
## @visulima/vite-overlay [1.3.1](https://github.com/visulima/visulima/compare/@visulima/vite-overlay@1.3.0...@visulima/vite-overlay@1.3.1) (2025-10-20)
|
|
2
24
|
|
|
3
25
|
### Miscellaneous Chores
|
package/README.md
CHANGED
|
@@ -107,13 +107,13 @@ export default defineConfig({
|
|
|
107
107
|
|
|
108
108
|
| Option | Type | Default | Description |
|
|
109
109
|
| ------------------------- | ------------------ | ----------- | ------------------------------------------------------------------------ |
|
|
110
|
-
| `forwardConsole`
|
|
110
|
+
| `forwardConsole` | `boolean` | `true` | Enable/disable client-side runtime error logging and overlay display |
|
|
111
111
|
| `forwardedConsoleMethods` | `string[]` | `["error"]` | Array of console method names to intercept and forward to overlay |
|
|
112
112
|
| `reactPluginName` | `string` | `undefined` | Custom React plugin name for detection (useful for custom React plugins) |
|
|
113
113
|
| `vuePluginName` | `string` | `undefined` | Custom Vue plugin name for detection (useful for custom Vue plugins) |
|
|
114
114
|
| `showBallonButton` | `boolean` | `true` | Whether to show the floating balloon button for error navigation |
|
|
115
115
|
| `solutionFinders` | `SolutionFinder[]` | `[]` | Array of custom solution finder functions for enhanced error analysis |
|
|
116
|
-
| `logClientRuntimeError` | `boolean` | `undefined` | **@deprecated** Use `forwardConsole` instead
|
|
116
|
+
| `logClientRuntimeError` | `boolean` | `undefined` | **@deprecated** Use `forwardConsole` instead |
|
|
117
117
|
|
|
118
118
|
## Error Handling
|
|
119
119
|
|