(dir: string)
| 235 | const readActiveLocalServerManifest = readReachableLocalServerHint; |
| 236 | |
| 237 | const normalizeDaemonScopeDir = (dir: string): string => { |
| 238 | const resolved = resolve(dir); |
| 239 | return existsSync(resolved) ? realpathSync.native(resolved) : resolved; |
| 240 | }; |
| 241 | |
| 242 | const currentScopeDirForManifest = (): string | null => |
| 243 | process.env.EXECUTOR_SCOPE_DIR ? normalizeDaemonScopeDir(process.env.EXECUTOR_SCOPE_DIR) : null; |
no test coverage detected