fix(runner): do not exclude .vibncode from findTasksDir scanner
This commit is contained in:
@@ -221,7 +221,6 @@ function findTasksDir(root) {
|
||||
if (file === "node_modules" ||
|
||||
file === ".git" ||
|
||||
file === ".next" ||
|
||||
file === ".vibncode" ||
|
||||
file === "dist") {
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -314,7 +314,6 @@ function findTasksDir(root: string): string | null {
|
||||
file === "node_modules" ||
|
||||
file === ".git" ||
|
||||
file === ".next" ||
|
||||
file === ".vibncode" ||
|
||||
file === "dist"
|
||||
) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user