mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 18:30:44 +00:00
refactor: remove plugin dependency cleanup leftovers
This commit is contained in:
@@ -512,13 +512,7 @@ function toScopedIncludePattern(arg, cwd) {
|
||||
}
|
||||
|
||||
function isSkippedImportGraphDirectory(name) {
|
||||
return (
|
||||
name === ".git" ||
|
||||
name === "dist" ||
|
||||
name === "node_modules" ||
|
||||
name === "vendor" ||
|
||||
name.startsWith(".openclaw-runtime-deps")
|
||||
);
|
||||
return name === ".git" || name === "dist" || name === "node_modules" || name === "vendor";
|
||||
}
|
||||
|
||||
function listImportGraphFiles(cwd, directory, files = []) {
|
||||
|
||||
Reference in New Issue
Block a user