(projectRoot: string)
| 22 | } |
| 23 | |
| 24 | async function getHistoryFilePath(projectRoot: string): Promise<string> { |
| 25 | const historyDir = getProjectTempDir(projectRoot); |
| 26 | return path.join(historyDir, HISTORY_FILE); |
| 27 | } |
| 28 | |
| 29 | // Handle multiline commands |
| 30 | async function readHistoryFile(filePath: string): Promise<string[]> { |
no test coverage detected