(sourceRoot: string, deployConfigPath?: string)
| 113 | } |
| 114 | |
| 115 | async getDeployConfig(sourceRoot: string, deployConfigPath?: string): Promise<DeployConfig> { |
| 116 | const key = this.getDeployConfigKey(sourceRoot, deployConfigPath); |
| 117 | return ( |
| 118 | this.deployConfigs[key] ?? this.defaultDeployConfig ?? {projectId: null, projectSlug: null, workspaceLogin: null} |
| 119 | ); |
| 120 | } |
| 121 | |
| 122 | async setDeployConfig(sourceRoot: string, deployConfigPath: string | undefined, config: DeployConfig) { |
| 123 | const key = this.getDeployConfigKey(sourceRoot, deployConfigPath); |
no test coverage detected