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.
1 parent 7b3d806 commit 4e8755eCopy full SHA for 4e8755e
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