style: format daemon runtime changes

This commit is contained in:
Peter Steinberger
2026-01-06 23:29:38 +01:00
parent 4e6fcd1678
commit 8d50d08936
6 changed files with 23 additions and 22 deletions

View File

@@ -166,7 +166,9 @@ export async function resolveGatewayProgramArguments(params: {
const repoRoot = resolveRepoRootForDev();
const devCliPath = path.join(repoRoot, "src", "index.ts");
await fs.access(devCliPath);
const bunPath = isBunRuntime(execPath) ? execPath : await resolveBunPath();
const bunPath = isBunRuntime(execPath)
? execPath
: await resolveBunPath();
return {
programArguments: [bunPath, devCliPath, ...gatewayArgs],
workingDirectory: repoRoot,