refactor: centralize channel ingress access

This commit is contained in:
Peter Steinberger
2026-05-10 05:06:03 +01:00
parent 1725eebe62
commit a0fb7fb045
250 changed files with 11410 additions and 8161 deletions

View File

@@ -16,7 +16,10 @@ function docsFiles() {
cwd: ROOT,
encoding: "utf8",
});
return output.split("\n").filter(Boolean);
return output
.split("\n")
.filter(Boolean)
.filter((relativePath) => fs.existsSync(path.join(ROOT, relativePath)));
}
function runOxfmt(files) {