UNPKG

scanex

Version:

A powerful CLI tool that automatically discovers and bundles related source code into a single markdown file, perfect for sharing with LLMs like ChatGPT, Claude, or Cursor AI.

8 lines (7 loc) 254 B
export const name = 'txt'; export const exts = ['.txt']; export function scan(src, { file }) { // Plain text files don't have dependencies in the same way as code files. // We include them for bundling, but don't scan for more files. return []; }