(sourceRoot: string, deployConfigPath?: string)
| 109 | } |
| 110 | |
| 111 | private getDeployConfigKey(sourceRoot: string, deployConfigPath?: string): string { |
| 112 | return `${sourceRoot}::${deployConfigPath ?? "<default>"}`; |
| 113 | } |
| 114 | |
| 115 | async getDeployConfig(sourceRoot: string, deployConfigPath?: string): Promise<DeployConfig> { |
| 116 | const key = this.getDeployConfigKey(sourceRoot, deployConfigPath); |
no outgoing calls
no test coverage detected