import * as esbuild from 'esbuild'; // Cache bundled JS per entry path (only used in production) const bundleCache = new Map(); // In development mode, skip cache to allow hot-reloading of component changes const isDev = process.env.NODE_ENV !== 'production'; export async function bundleComponent(entryPath: string): Promise { if (!isDev && bundleCache.has(entryPath)) { return bundleCache.get(entryPath)!; } const result = await esbuild.build({ entryPoints: [entryPath], bundle: true, write: false, // No disk I/O - keep everything in memory format: 'iife', target: 'es2020', jsx: 'automatic', loader: { '.tsx': 'tsx', '.ts': 'ts', }, minify: false, }); const bundledJS = result.outputFiles[0].text; // Only cache in production mode if (!isDev) { bundleCache.set(entryPath, bundledJS); } return bundledJS; }