(directory: string)
| 40 | * @param directory the directory to look for POSTINSTALL.md in. |
| 41 | */ |
| 42 | export async function readPostinstall(directory: string): Promise<string> { |
| 43 | const content = await readFileFromDirectory(directory, POSTINSTALL_FILE); |
| 44 | return content.source; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Substitue parameters of function resources in the extensions spec. |
no test coverage detected
searching dependent graphs…