Remove bun imports from esbuild bundler

This commit is contained in:
Benjamin Toby 2026-07-30 11:52:08 +01:00
parent 88ead3b3d6
commit 823c5bb1ca
3 changed files with 3 additions and 1 deletions

View File

@ -79,6 +79,7 @@ export default async function pagesSSRBundler(params) {
"react/jsx-runtime", "react/jsx-runtime",
"react/jsx-dev-runtime", "react/jsx-dev-runtime",
"bun:*", "bun:*",
"bun",
"sqlite-vec", "sqlite-vec",
"better-sqlite3", "better-sqlite3",
...(config.ssr_compiler_excludes || []), ...(config.ssr_compiler_excludes || []),

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/bunext", "name": "@moduletrace/bunext",
"version": "1.0.99", "version": "1.0.100",
"main": "dist/index.js", "main": "dist/index.js",
"module": "index.ts", "module": "index.ts",
"dependencies": { "dependencies": {

View File

@ -108,6 +108,7 @@ export default async function pagesSSRBundler(params?: Params) {
"react/jsx-runtime", "react/jsx-runtime",
"react/jsx-dev-runtime", "react/jsx-dev-runtime",
"bun:*", "bun:*",
"bun",
"sqlite-vec", "sqlite-vec",
"better-sqlite3", "better-sqlite3",
...(config.ssr_compiler_excludes || []), ...(config.ssr_compiler_excludes || []),