()
| 392 | } |
| 393 | |
| 394 | async _readBuildManifest() { |
| 395 | const reader = this.getReader(); |
| 396 | const buildManifestResource = await reader.byPath("/.ui5/build-manifest.json"); |
| 397 | if (buildManifestResource) { |
| 398 | return JSON.parse(await buildManifestResource.getString()); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | _normalizeConfig(config) { |
| 403 | if (!config.kind) { |
no test coverage detected