Skip to content

Commit 2f4a5f1

Browse files
argenisleonclaude
andcommitted
fix: add missing externals to server build script
Mark @funny/podman-chrome-streaming and playwright-core as external in the Bun bundler config so dynamic imports don't cause resolution errors during the build. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0301fb1 commit 2f4a5f1

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/server/build.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,16 @@ await Bun.build({
1111
outdir: './dist',
1212
target: 'bun',
1313
format: 'esm',
14-
external: ['better-auth', 'drizzle-orm', 'hono', 'nanoid', 'neverthrow', 'nodemailer'],
14+
external: [
15+
'better-auth',
16+
'drizzle-orm',
17+
'hono',
18+
'nanoid',
19+
'neverthrow',
20+
'nodemailer',
21+
'@funny/podman-chrome-streaming',
22+
'playwright-core',
23+
],
1524
});
1625

1726
console.log('✓ Central server built successfully');

0 commit comments

Comments
 (0)