(platform, options = {}, extraPaths)
| 284 | // Building (includes prepare) |
| 285 | |
| 286 | buildForPlatform(platform, options = {}, extraPaths) { |
| 287 | assert(platform); |
| 288 | |
| 289 | const commandOptions = { |
| 290 | ...this.defaultOptions, |
| 291 | platforms: [platform], |
| 292 | options, |
| 293 | }; |
| 294 | |
| 295 | this.runCommands(`building Cordova app for platform \ |
| 296 | ${displayNameForPlatform(platform)}`, async () => { |
| 297 | await cordova_lib.build(commandOptions); |
| 298 | }); |
| 299 | } |
| 300 | |
| 301 | // Running |
| 302 |
no test coverage detected