6 lines
397 B
TypeScript
6 lines
397 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: 'cli', entry: 'agent/command.ts', dts: true, target: 'node' }); |