(dir: string)
| 249 | const readActiveLocalServerManifest = readReachableLocalServerHint; |
| 250 | |
| 251 | const normalizeDaemonScopeDir = (dir: string): string => { |
| 252 | const resolved = resolve(dir); |
| 253 | return existsSync(resolved) ? realpathSync.native(resolved) : resolved; |
| 254 | }; |
| 255 | |
| 256 | const currentScopeDirForManifest = (): string | null => |
| 257 | process.env.EXECUTOR_SCOPE_DIR ? normalizeDaemonScopeDir(process.env.EXECUTOR_SCOPE_DIR) : null; |
no test coverage detected