Usage
1import { P2PMD } from 'hbh-nodes';3const { Project2MD, SimpleExclude } = P2PMD;5await Project2MD({6 input: './my-project',7 output: './docs/project.md',8 concurrency: 10,9 onprogress: ({ index, relPath }) => {10 console.log(`Processed file #${index}: ${relPath}`);11 },12 onEnd: ({ total }) => {13 console.log(`Finished! Total files processed: ${total}`);14 },15});