Skip to content

Commit 649b680

Browse files
committed
Stop passing --no-rebuild flag on sync
1 parent 8acee1c commit 649b680

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/project/androidProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class AndroidProject extends Project {
2525
}
2626

2727
public debugWithSync(options: { stopOnEntry: boolean, syncAllFiles: boolean }, tnsArgs?: string[]): DebugResult {
28-
let args: string[] = ["--no-rebuild", "--watch"];
28+
let args: string[] = ["--watch"];
2929
if (options.syncAllFiles) { args.push("--syncAllFiles"); }
3030
args = args.concat(tnsArgs);
3131

src/project/iosProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class IosProject extends Project {
3131
}
3232

3333
public debugWithSync(options: { stopOnEntry: boolean, syncAllFiles: boolean }, tnsArgs?: string[]): DebugResult {
34-
let args: string[] = ["--no-rebuild", "--watch"];
34+
let args: string[] = ["--watch"];
3535
if (options.syncAllFiles) { args.push("--syncAllFiles"); }
3636
args = args.concat(tnsArgs);
3737

0 commit comments

Comments
 (0)