[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-08-25 07:03:39 +00:00 committed by GitHub
parent 1ccd633153
commit 3055c3351b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,9 @@ async function findFreePort(start) {
return port;
}
const start = Number.parseInt(process.argv[2] || process.env.PORT || "3000", 10);
const start = Number.parseInt(
process.argv[2] || process.env.PORT || "3000",
10,
);
const port = await findFreePort(start);
process.stdout.write(String(port));