Release v0.27.1

This commit is contained in:
Mario Zechner 2025-12-22 19:28:26 +01:00
parent 093bcecf95
commit 4492a3f304
15 changed files with 111 additions and 40 deletions

View file

@ -182,6 +182,11 @@ function loadSkillsFromDirInternal(dir: string, source: string, format: SkillFor
continue;
}
// Skip node_modules to avoid scanning dependencies
if (entry.name === "node_modules") {
continue;
}
if (entry.isSymbolicLink()) {
continue;
}