mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-01-22 17:37:34 +00:00
Compare commits
2 Commits
42b2d5e1d9
...
15e4db386f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15e4db386f | ||
|
|
66e85fb2c1 |
@@ -1637,10 +1637,13 @@ async function getFileTree(dirPath, maxDepth = 3, currentDepth = 0, showHidden =
|
||||
// Debug: log all entries including hidden files
|
||||
|
||||
|
||||
// Skip only heavy build directories
|
||||
// Skip heavy build directories and VCS directories
|
||||
if (entry.name === 'node_modules' ||
|
||||
entry.name === 'dist' ||
|
||||
entry.name === 'build') continue;
|
||||
entry.name === 'build' ||
|
||||
entry.name === '.git' ||
|
||||
entry.name === '.svn' ||
|
||||
entry.name === '.hg') continue;
|
||||
|
||||
const itemPath = path.join(dirPath, entry.name);
|
||||
const item = {
|
||||
|
||||
Reference in New Issue
Block a user