fix: add bun install to go:generate and packages:bundle to build
- Split go:generate into `bun install` + `bun run build` so deps are always available before bundling (fixes build on clean checkout) - Add `packages: 'bundle'` to Bun.build() so node_modules are resolved and bundled into the output (required for marked + highlight.js) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3fd9516de5
commit
b63d0db489
2 changed files with 2 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ const result = await Bun.build({
|
||||||
target: 'browser',
|
target: 'browser',
|
||||||
format: 'iife',
|
format: 'iife',
|
||||||
sourcemap: 'none',
|
sourcemap: 'none',
|
||||||
|
packages: 'bundle',
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ import (
|
||||||
"github.com/sipeed/picoclaw/pkg/research"
|
"github.com/sipeed/picoclaw/pkg/research"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
//go:generate bun install --cwd frontend
|
||||||
//go:generate bun run --cwd frontend build
|
//go:generate bun run --cwd frontend build
|
||||||
//go:embed static
|
//go:embed static
|
||||||
var staticFS embed.FS
|
var staticFS embed.FS
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue