Files
cnb/bun.config.ts

7 lines
466 B
TypeScript

import { buildWithBun } from '@kevisual/code-builder'
await buildWithBun({ naming: 'opencode', entry: 'agent/opencode.ts', dts: true });
await buildWithBun({ naming: 'keep', entry: 'src/keep.ts', dts: true, target: 'node' });
await buildWithBun({ naming: 'routes', entry: 'agent/index.ts', dts: true });
await buildWithBun({ naming: 'npc', entry: 'agent/npc.ts', dts: true });
await buildWithBun({ naming: 'cli', entry: 'agent/cli.ts', dts: true, target: 'node' });