Files
star-kitten/packages/util/build.ts
2025-10-06 23:31:31 -04:00

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);
}