* Configuration
()
| 198 | * Configuration |
| 199 | */ |
| 200 | async _getConfigurations() { |
| 201 | let configurations; |
| 202 | |
| 203 | configurations = await this._getSuppliedConfigurations(); |
| 204 | |
| 205 | if (!configurations || !configurations.length) { |
| 206 | configurations = await this._getBuildManifestConfigurations(); |
| 207 | } |
| 208 | if (!configurations || !configurations.length) { |
| 209 | configurations = await this._getYamlConfigurations(); |
| 210 | } |
| 211 | if (!configurations || !configurations.length) { |
| 212 | configurations = await this._getShimConfigurations(); |
| 213 | } |
| 214 | return configurations || []; |
| 215 | } |
| 216 | |
| 217 | _normalizeAndApplyShims(config) { |
| 218 | this._normalizeConfig(config); |
no test coverage detected