refactor(cli): privatize internal exports (#106848)

This commit is contained in:
Peter Steinberger
2026-07-13 15:09:26 -07:00
committed by GitHub
parent 710d1eb443
commit e69df7ef22
11 changed files with 22 additions and 32 deletions

View File

@@ -21,10 +21,11 @@ import {
forceFreePort,
forceFreePortAndWait,
listPortListeners,
type PortProcess,
parseLsofOutput,
} from "./ports.js";
type PortProcess = ReturnType<typeof forceFreePort>[number];
describe("gateway --force helpers", () => {
let originalKill: typeof process.kill;
let originalPlatform: NodeJS.Platform;