(location: string, log: (...args: any[]) => void)
| 63 | } |
| 64 | |
| 65 | export async function buildTsManifest(location: string, log: (...args: any[]) => void): Promise<void> { |
| 66 | const tsManifest = getTsManifest(location); |
| 67 | if (!tsManifest) { |
| 68 | return; |
| 69 | } |
| 70 | |
| 71 | await buildManifestFromLocation(tsManifest, log); |
| 72 | } |
| 73 | |
| 74 | // eslint-disable-next-line @typescript-eslint/require-await |
| 75 | export async function generateManifestFromTs(projectManifestEntry: string): Promise<string> { |
no test coverage detected