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