We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7b0c13 + 4e8755e commit d90b9fdCopy full SHA for d90b9fd
lib/services/platform-service.ts
@@ -213,14 +213,14 @@ export class PlatformService implements IPlatformService {
213
}).future<void>()();
214
}
215
216
- public runPlatform(platform: string): IFuture<void> {
+ public runPlatform(platform: string, buildConfig?: IBuildConfig): IFuture<void> {
217
return (() => {
218
platform = platform.toLowerCase();
219
220
if (this.$options.emulator) {
221
- this.deployOnEmulator(platform).wait();
+ this.deployOnEmulator(platform, buildConfig).wait();
222
} else {
223
- this.deployOnDevice(platform).wait();
+ this.deployOnDevice(platform, buildConfig).wait();
224
225
226
0 commit comments