File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import helpers = require("../common/helpers");
7
7
import usbLivesyncServiceBaseLib = require( "../common/services/usb-livesync-service-base" ) ;
8
8
import path = require( "path" ) ;
9
9
import semver = require( "semver" ) ;
10
+ import Future = require( "fibers/future" ) ;
10
11
11
12
export class UsbLiveSyncService extends usbLivesyncServiceBaseLib . UsbLiveSyncServiceBase implements IUsbLiveSyncService {
12
13
private excludedProjectDirsAndFiles = [
@@ -82,7 +83,8 @@ export class UsbLiveSyncService extends usbLivesyncServiceBaseLib.UsbLiveSyncSer
82
83
let platformSpecificUsbLiveSyncService = this . resolveUsbLiveSyncService ( platform || this . $devicesServices . platform , device ) ;
83
84
if ( platformSpecificUsbLiveSyncService . beforeLiveSyncAction ) {
84
85
return platformSpecificUsbLiveSyncService . beforeLiveSyncAction ( deviceAppData ) ;
85
- }
86
+ }
87
+ return Future . fromResult ( ) ;
86
88
}
87
89
88
90
let watchGlob = path . join ( this . $projectData . projectDir , constants . APP_FOLDER_NAME ) ;
You can’t perform that action at this time.
0 commit comments