📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-04 16:04:20 +00:00
parent b40381458b
commit 9dc81e18a7
194 changed files with 3039 additions and 755 deletions
@@ -56,6 +56,10 @@ function parseArgs(argv) {
}
function safeUserPath(pathValue, baseDir = process.cwd()) {
if (path.isAbsolute(String(pathValue || ""))) {
return path.resolve(pathValue);
}
const root = path.resolve(baseDir);
const segments = String(pathValue || "").split(/[\\/]+/).filter(Boolean).map((segment) => {
const sanitized = sanitizeFilename(segment);