(possibleName?: string)
| 43 | } = options |
| 44 | |
| 45 | const resolveProjectName = (possibleName?: string): string => { |
| 46 | if (customProjectName) { |
| 47 | return customProjectName |
| 48 | } |
| 49 | |
| 50 | if (possibleName) { |
| 51 | return possibleName |
| 52 | } |
| 53 | |
| 54 | return 'Untitled project' |
| 55 | } |
| 56 | |
| 57 | const resolveOutputPath = async (outputFilename: string): Promise<string> => { |
| 58 | if (customOutputPath) { |
no outgoing calls
no test coverage detected