(sourceRoot: string, deployConfigPath: string | undefined, config: DeployConfig)
| 120 | } |
| 121 | |
| 122 | async setDeployConfig(sourceRoot: string, deployConfigPath: string | undefined, config: DeployConfig) { |
| 123 | const key = this.getDeployConfigKey(sourceRoot, deployConfigPath); |
| 124 | this.deployConfigs[key] = config; |
| 125 | } |
| 126 | |
| 127 | *visitFiles(path: string) { |
| 128 | yield* visitFiles(path); |
no test coverage detected