(options: any)
| 54 | * @return web app configuration, or undefined. |
| 55 | */ |
| 56 | export function getCachedWebSetup(options: any): WebConfig | undefined { |
| 57 | const projectId = needProjectId(options); |
| 58 | const allConfigs = configstore.get(CONFIGSTORE_KEY) || {}; |
| 59 | return allConfigs[projectId]; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Recursively list all hosting sites for a given project. |
no test coverage detected
searching dependent graphs…