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 9157ebb commit 26c06c5Copy full SHA for 26c06c5
lib/commands/run.ts
@@ -5,9 +5,15 @@ export class RunCommandBase {
5
6
public async executeCore(args: string[]): Promise<void> {
7
await this.$platformService.deployPlatform(args[0]);
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
}
16
17
return this.$usbLiveSyncService.liveSync(args[0]);
18
19
0 commit comments