(filePath: string)
| 133 | } |
| 134 | |
| 135 | export function filePathToCliArg(filePath: string): string { |
| 136 | // needs to be escaped if spaces included |
| 137 | return `"${filePath}"`; |
| 138 | } |
| 139 | |
| 140 | export function projectToFilename(project: string): string { |
| 141 | return project.replace(/[/\\\s]+/g, '-').replace(/@/g, ''); |
no outgoing calls
no test coverage detected