@checkstack/frontend 0.2.9 → 0.2.11
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 +19 -0
- package/package.json +1 -1
- package/vite.config.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @checkstack/frontend
|
|
2
2
|
|
|
3
|
+
## 0.2.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- deec10c: Fix production crash when opening health check accordion and enable sourcemaps
|
|
8
|
+
|
|
9
|
+
- Fixed TypeError in `HealthCheckLatencyChart` where recharts Tooltip content function was returning `undefined` instead of `null`, causing "can't access property 'value', o is undefined" error
|
|
10
|
+
- Enabled production sourcemaps in Vite config for better debugging of production errors
|
|
11
|
+
|
|
12
|
+
## 0.2.10
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [090143b]
|
|
17
|
+
- @checkstack/ui@0.5.1
|
|
18
|
+
- @checkstack/auth-frontend@0.5.6
|
|
19
|
+
- @checkstack/catalog-frontend@0.3.10
|
|
20
|
+
- @checkstack/command-frontend@0.2.9
|
|
21
|
+
|
|
3
22
|
## 0.2.9
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
package/vite.config.ts
CHANGED
|
@@ -48,6 +48,8 @@ export default defineConfig(() => {
|
|
|
48
48
|
build: {
|
|
49
49
|
// Use esnext to support top-level await and modern ES features
|
|
50
50
|
target: "esnext",
|
|
51
|
+
// Generate sourcemaps for production debugging
|
|
52
|
+
sourcemap: true,
|
|
51
53
|
},
|
|
52
54
|
resolve: {
|
|
53
55
|
// Force all monorepo packages to use the same React copy at build time.
|