(manifestPath: string)
| 388 | }; |
| 389 | |
| 390 | export async function getManifestData(manifestPath: string): Promise<Document> { |
| 391 | const existingManifest = await fs.promises.readFile(path.join(manifestPath), 'utf8'); |
| 392 | return parseDocument(existingManifest); |
| 393 | } |
| 394 | |
| 395 | export function prependDatasources(dsStr: string, toPendStr: string): string { |
| 396 | if (dsStr.trim().startsWith('[') && dsStr.trim().endsWith(']')) { |
no outgoing calls
no test coverage detected