this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove unused code

-15
-15
index.ts
··· 65 65 } 66 66 }; 67 67 68 - async function populateDocs(dir: string, docs: Doc[]): Doc[] { 69 - const files = await readdir(dir); 70 - for (const file of files) { 71 - const filepath = path.join(dir, file); 72 - // Skip if file matches ignore patterns 73 - if (ig.ignores(filepath)) { 74 - continue; 75 - } 76 - const stats = await stat(filepath); 77 - if (stats.isDirectory()) { 78 - 79 - } 80 - } 81 - } 82 - 83 68 async function createAutomergeDocuments(startPath: string) { 84 69 // Create the root folder handle that will accumulate all documents 85 70 const folderHandle = repo.create<Folder>({