(request: {
projectPath?: string | undefined | null | undefined
chat?: boolean | undefined
})
| 5 | import type { PiPackageManager, PiSettingsManager } from './types.ts' |
| 6 | |
| 7 | export function resolvePiPackageProjectPath(request: { |
| 8 | projectPath?: string | undefined | null | undefined |
| 9 | chat?: boolean | undefined |
| 10 | }) { |
| 11 | return request.chat ? getChatSessionDir() : request.projectPath |
| 12 | } |
| 13 | |
| 14 | export async function getPiPackageServices( |
| 15 | request: { projectPath?: string | undefined | null | undefined; chat?: boolean | undefined } = {}, |
no test coverage detected