fix(runner): do not exclude .vibncode from findTasksDir scanner

This commit is contained in:
2026-06-03 15:19:54 -07:00
parent a42eaa4e40
commit f1856b4b71
2 changed files with 0 additions and 2 deletions

View File

@@ -221,7 +221,6 @@ function findTasksDir(root) {
if (file === "node_modules" ||
file === ".git" ||
file === ".next" ||
file === ".vibncode" ||
file === "dist") {
continue;
}

View File

@@ -314,7 +314,6 @@ function findTasksDir(root: string): string | null {
file === "node_modules" ||
file === ".git" ||
file === ".next" ||
file === ".vibncode" ||
file === "dist"
) {
continue;