(platforms = this.listInstalledPlatforms())
| 413 | } |
| 414 | |
| 415 | updatePlatforms(platforms = this.listInstalledPlatforms()) { |
| 416 | this.runCommands(`updating Cordova project for platforms \ |
| 417 | ${displayNamesForPlatforms(platforms)}`, async () => { |
| 418 | await cordova_lib.platform('update', platforms, this.defaultOptions); |
| 419 | }); |
| 420 | } |
| 421 | |
| 422 | addPlatform(platform) { |
| 423 | this.runCommands(`adding platform ${displayNameForPlatform(platform)} \ |
nothing calls this directly
no test coverage detected