const bundle = await Bun.build({ entrypoints: ['./src/***.ts', '!./src/**/*.test.ts'], outdir: 'dist', minify: true, }); if (!bundle.success) { throw new AggregateError(bundle.logs); }