( userId: string, projectId: string )
| 31 | |
| 32 | // Step 4: Project Cache Directory within a User's Directory |
| 33 | export const getProjectCacheDir = ( |
| 34 | userId: string, |
| 35 | projectId: string |
| 36 | ): string => { |
| 37 | return ensureDir(path.join(getUserCacheDir(userId), projectId)); |
| 38 | }; |
| 39 | |
| 40 | // Step 5: Content Directory within a Project's Cache Directory |
| 41 | export const getProjectContentDir = ( |
no test coverage detected