mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-07-21 18:33:22 -07:00
5c2f70a37c
New package for contributors to collect, aggregate, analyze, and improve workflow prompts based on real project data. Includes unit tests (vitest), installer integration, and loop/finalize hints.
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
'bin/plan2code-metrics': 'src/bin/plan2code-metrics.ts',
|
|
index: 'src/index.ts',
|
|
},
|
|
format: ['esm'],
|
|
dts: true,
|
|
clean: true,
|
|
sourcemap: true,
|
|
banner: {
|
|
js: '#!/usr/bin/env node',
|
|
},
|
|
});
|