mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-09-17 16:22:23 -07:00
48a7cf68bd
scripts/validate-char-count.js measures characters on disk, so a CRLF checkout added ~1 char per line and pushed the 11k-budget prompt files over the limit depending on how the repo was cloned. Pins eol=lf, marks binaries, and renormalizes the files that had CRLF. AI Assisted
16 lines
285 B
TypeScript
16 lines
285 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
'bin/plan2code-loop': 'src/bin/plan2code-loop.ts',
|
|
index: 'src/index.ts',
|
|
},
|
|
format: ['esm'],
|
|
dts: false,
|
|
clean: true,
|
|
sourcemap: true,
|
|
banner: {
|
|
js: '#!/usr/bin/env node',
|
|
},
|
|
});
|