@@ -25,7 +25,7 @@ import { resolveGatewayStateDir } from "./paths.js";
|
25 | 25 | |
26 | 26 | export { isNodeVersionManagerRuntime, resolveLinuxSystemCaBundle }; |
27 | 27 | |
28 | | -export type MinimalServicePathOptions = { |
| 28 | +type MinimalServicePathOptions = { |
29 | 29 | platform?: NodeJS.Platform; |
30 | 30 | extraDirs?: string[]; |
31 | 31 | home?: string; |
@@ -225,7 +225,7 @@ function resolveSystemPathDirs(platform: NodeJS.Platform): string[] {
|
225 | 225 | * - fnm: macOS uses ~/Library/Application Support/fnm (not ~/.local/share/fnm) |
226 | 226 | * - pnpm: macOS uses ~/Library/pnpm (not ~/.local/share/pnpm) |
227 | 227 | */ |
228 | | -export function resolveDarwinUserBinDirs( |
| 228 | +function resolveDarwinUserBinDirs( |
229 | 229 | home: string | undefined, |
230 | 230 | env?: Record<string, string | undefined>, |
231 | 231 | existsSync: (candidate: string) => boolean = fs.existsSync, |
@@ -271,7 +271,7 @@ export function resolveDarwinUserBinDirs(
|
271 | 271 | * Resolve common user bin directories for Linux. |
272 | 272 | * These are paths where npm global installs and node version managers typically place binaries. |
273 | 273 | */ |
274 | | -export function resolveLinuxUserBinDirs( |
| 274 | +function resolveLinuxUserBinDirs( |
275 | 275 | home: string | undefined, |
276 | 276 | env?: Record<string, string | undefined>, |
277 | 277 | existsSync: (candidate: string) => boolean = fs.existsSync, |
|