(storeRoot: string)
| 87 | } |
| 88 | |
| 89 | export function getStoreMetadataPath(storeRoot: string): string { |
| 90 | return joinStorePath( |
| 91 | getStoreMetadataDir(storeRoot), |
| 92 | STORE_METADATA_FILE_NAME |
| 93 | ); |
| 94 | } |
| 95 | |
| 96 | export function validateStoreId(id: string): string { |
| 97 | const folderProblem = folderStyleNameProblem(id, 'Store id'); |
no test coverage detected