@checkstack/frontend 0.3.17 → 0.3.19
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 +21 -0
- package/package.json +8 -8
- package/vite.config.ts +3 -0
- package/vite.config.vendor.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @checkstack/frontend
|
|
2
2
|
|
|
3
|
+
## 0.3.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a7b7081]
|
|
8
|
+
- @checkstack/dependency-frontend@0.2.16
|
|
9
|
+
- @checkstack/auth-frontend@0.5.28
|
|
10
|
+
- @checkstack/catalog-frontend@0.8.2
|
|
11
|
+
- @checkstack/announcement-frontend@0.2.11
|
|
12
|
+
|
|
13
|
+
## 0.3.18
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- fdc9b2d: Fix vendor build output conflicting with Vite's publicDir
|
|
18
|
+
|
|
19
|
+
The vendor build was outputting to `public/vendor/` which is inside Vite's `publicDir` (`public/`). This caused Vite to skip copying public directory contents (including `favicon.svg`) to the `dist/` folder during production builds, resulting in missing static assets in the Docker container.
|
|
20
|
+
|
|
21
|
+
- Move vendor build output from `public/vendor/` to `dist/vendor/`
|
|
22
|
+
- Set `emptyOutDir: false` on the main build to preserve the pre-built vendor bundles
|
|
23
|
+
|
|
3
24
|
## 0.3.17
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/frontend",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.19",
|
|
4
4
|
"checkstack": {
|
|
5
5
|
"type": "frontend"
|
|
6
6
|
},
|
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
"lint:code": "eslint . --max-warnings 0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@checkstack/about-frontend": "0.2.
|
|
19
|
-
"@checkstack/announcement-frontend": "0.2.
|
|
20
|
-
"@checkstack/auth-frontend": "0.5.
|
|
21
|
-
"@checkstack/catalog-frontend": "0.
|
|
22
|
-
"@checkstack/command-frontend": "0.2.
|
|
18
|
+
"@checkstack/about-frontend": "0.2.10",
|
|
19
|
+
"@checkstack/announcement-frontend": "0.2.10",
|
|
20
|
+
"@checkstack/auth-frontend": "0.5.27",
|
|
21
|
+
"@checkstack/catalog-frontend": "0.8.1",
|
|
22
|
+
"@checkstack/command-frontend": "0.2.29",
|
|
23
23
|
"@checkstack/common": "0.6.5",
|
|
24
|
-
"@checkstack/dependency-frontend": "0.2.
|
|
24
|
+
"@checkstack/dependency-frontend": "0.2.15",
|
|
25
25
|
"@checkstack/frontend-api": "0.3.9",
|
|
26
26
|
"@checkstack/signal-common": "0.1.9",
|
|
27
27
|
"@checkstack/signal-frontend": "0.0.15",
|
|
28
|
-
"@checkstack/ui": "1.
|
|
28
|
+
"@checkstack/ui": "1.5.0",
|
|
29
29
|
"@orpc/client": "^1.13.14",
|
|
30
30
|
"@tanstack/react-query": "^5.64.0",
|
|
31
31
|
"@tanstack/react-query-devtools": "^5.64.0",
|
package/vite.config.ts
CHANGED
|
@@ -50,6 +50,9 @@ export default defineConfig(() => {
|
|
|
50
50
|
target: "esnext",
|
|
51
51
|
// Generate sourcemaps for production debugging
|
|
52
52
|
sourcemap: true,
|
|
53
|
+
// Don't wipe dist/ — the vendor build (build:vendor) writes to dist/vendor/
|
|
54
|
+
// before this build runs, and we need to preserve those files
|
|
55
|
+
emptyOutDir: false,
|
|
53
56
|
},
|
|
54
57
|
resolve: {
|
|
55
58
|
// Force all monorepo packages to use the same React copy at build time.
|
package/vite.config.vendor.ts
CHANGED
|
@@ -9,8 +9,10 @@ import path from "node:path";
|
|
|
9
9
|
* We point directly to node_modules - no custom entry files needed.
|
|
10
10
|
*/
|
|
11
11
|
export default defineConfig({
|
|
12
|
+
// Don't copy public/ contents — the main build handles that
|
|
13
|
+
publicDir: false,
|
|
12
14
|
build: {
|
|
13
|
-
outDir: "
|
|
15
|
+
outDir: "dist/vendor",
|
|
14
16
|
emptyOutDir: true,
|
|
15
17
|
lib: {
|
|
16
18
|
formats: ["es"],
|