From 3055c3351b2e70628e40e49726fe4c40251d6cc8 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 07:03:39 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- scripts/find-free-port.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/find-free-port.mjs b/scripts/find-free-port.mjs index 2e647f504..9f9a2cc66 100644 --- a/scripts/find-free-port.mjs +++ b/scripts/find-free-port.mjs @@ -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));