bun build caches Commander.js from npm, making postinstall sed patch
ineffective. Directly changed the flag to single-char -D in:
- src/main.tsx (Option definition)
- src/utils/debug.ts (argv check)
Removed Commander.js patching from postinstall.sh.
The source uses -d2e flag which Commander.js rejects (single-char only).
postinstall.sh now patches both:
1. shortFlagExp regex: /^-[^-]$/ → /^-[^-]+$/
2. single-char restriction check disabled
Users no longer need to manually patch node_modules after bun install.
- scripts/postinstall.sh auto-creates @ant/* stubs after bun install
- Add turndown to package.json dependencies
- Update both READMEs with postinstall note in build steps
- Update missing packages section to explain postinstall mechanism