MCPcopy Create free account
hub / github.com/SAP/ui5-project / _getConfigurations

Method _getConfigurations

lib/graph/Module.js:200–215  ·  view source on GitHub ↗

* Configuration

()

Source from the content-addressed store, hash-verified

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);

Callers 1

_getSpecificationsMethod · 0.95

Tested by

no test coverage detected