@checkstack/frontend 0.2.10 → 0.2.12
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 +27 -0
- package/package.json +11 -11
- package/vite.config.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @checkstack/frontend
|
|
2
2
|
|
|
3
|
+
## 0.2.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0b9fc58: Fix workspace:\* protocol resolution in published packages
|
|
8
|
+
|
|
9
|
+
Published packages now correctly have resolved dependency versions instead of `workspace:*` references. This is achieved by using `bun publish` which properly resolves workspace protocol references.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [0b9fc58]
|
|
12
|
+
- @checkstack/auth-frontend@0.5.7
|
|
13
|
+
- @checkstack/catalog-frontend@0.3.11
|
|
14
|
+
- @checkstack/command-frontend@0.2.10
|
|
15
|
+
- @checkstack/common@0.6.1
|
|
16
|
+
- @checkstack/frontend-api@0.3.4
|
|
17
|
+
- @checkstack/signal-common@0.1.5
|
|
18
|
+
- @checkstack/signal-frontend@0.0.11
|
|
19
|
+
- @checkstack/ui@0.5.2
|
|
20
|
+
|
|
21
|
+
## 0.2.11
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- deec10c: Fix production crash when opening health check accordion and enable sourcemaps
|
|
26
|
+
|
|
27
|
+
- 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
|
|
28
|
+
- Enabled production sourcemaps in Vite config for better debugging of production errors
|
|
29
|
+
|
|
3
30
|
## 0.2.10
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/frontend",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"lint:code": "eslint . --max-warnings 0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@checkstack/auth-frontend": "
|
|
16
|
-
"@checkstack/catalog-frontend": "
|
|
17
|
-
"@checkstack/command-frontend": "
|
|
18
|
-
"@checkstack/common": "
|
|
19
|
-
"@checkstack/frontend-api": "
|
|
20
|
-
"@checkstack/signal-common": "
|
|
21
|
-
"@checkstack/signal-frontend": "
|
|
22
|
-
"@checkstack/ui": "
|
|
15
|
+
"@checkstack/auth-frontend": "0.5.6",
|
|
16
|
+
"@checkstack/catalog-frontend": "0.3.10",
|
|
17
|
+
"@checkstack/command-frontend": "0.2.9",
|
|
18
|
+
"@checkstack/common": "0.6.0",
|
|
19
|
+
"@checkstack/frontend-api": "0.3.3",
|
|
20
|
+
"@checkstack/signal-common": "0.1.4",
|
|
21
|
+
"@checkstack/signal-frontend": "0.0.10",
|
|
22
|
+
"@checkstack/ui": "0.5.1",
|
|
23
23
|
"@orpc/client": "^1.13.2",
|
|
24
24
|
"@tanstack/react-query": "^5.64.0",
|
|
25
25
|
"@tanstack/react-query-devtools": "^5.64.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"tailwind-merge": "^2.2.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@checkstack/scripts": "
|
|
37
|
-
"@checkstack/tsconfig": "
|
|
36
|
+
"@checkstack/scripts": "0.1.0",
|
|
37
|
+
"@checkstack/tsconfig": "0.0.2",
|
|
38
38
|
"@types/react": "^18.2.64",
|
|
39
39
|
"@types/react-dom": "^18.2.21",
|
|
40
40
|
"@vitejs/plugin-react": "^4.2.1",
|
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.
|