mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-07-21 10:23:23 -07:00
c92865c395
Add the autonomous workflow test runner (plan2code-bot) that uses the Claude Agent SDK to run plan2code end-to-end. Includes --resume flag to continue incomplete runs from saved state, and automatic state file cleanup on successful completion.
16 lines
283 B
TypeScript
16 lines
283 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
'bin/plan2code-bot': 'src/bin/plan2code-bot.ts',
|
|
index: 'src/index.ts',
|
|
},
|
|
format: ['esm'],
|
|
dts: false,
|
|
clean: true,
|
|
sourcemap: true,
|
|
banner: {
|
|
js: '#!/usr/bin/env node',
|
|
},
|
|
});
|