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 cb52a5e commit 3d8d070Copy full SHA for 3d8d070
lib/commands/run.ts
@@ -5,10 +5,16 @@ export class RunCommandBase {
5
6
public executeCore(args: string[]): IFuture<void> {
7
this.$platformService.deployPlatform(args[0]).wait();
8
+
9
+ if (this.$options.bundle) {
10
+ this.$options.watch = false;
11
+ }
12
13
if (this.$options.release) {
14
return this.$platformService.runPlatform(args[0]);
15
}
- return this.$usbLiveSyncService.liveSync(args[0]);
16
17
+ return this.$usbLiveSyncService.liveSync(args[0]);
18
19
20
0 commit comments