(projectRoot: string)
| 181 | * @returns The path to the project's temporary directory. |
| 182 | */ |
| 183 | export function getProjectTempDir(projectRoot: string): string { |
| 184 | const hash = getProjectHash(projectRoot); |
| 185 | return path.join(os.homedir(), ANUS_DIR, TMP_DIR_NAME, hash); |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Returns the absolute path to the user-level commands directory. |
no test coverage detected