File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11NativeScript CLI Changelog
22================
33
4+ 1.6.1 (2016, February 19)
5+ ==
6+
7+ ### Fixed
8+ * [ Fixed #1499 ] ( https://github.com/NativeScript/nativescript-cli/issues/1499 ) : ` livesync --watch ` fails for TypeScript projects with ` sourceMaps ` enabled.
9+ * [ Fixed #1503 ] ( https://github.com/NativeScript/nativescript-cli/issues/1503 ) : Livesync fails to install app on multiple devices.
10+
4111.6.0 (2016, February 17)
512==
613
Original file line number Diff line number Diff line change @@ -53,11 +53,12 @@ class LiveSyncService implements ILiveSyncService {
5353 let platformData = this . $platformsData . getPlatformData ( platformLowerCase ) ;
5454 this . ensureAndroidFrameworkVersion ( platformData ) . wait ( ) ;
5555
56- let liveSyncData = {
56+ let liveSyncData : ILiveSyncData = {
5757 platform : platform ,
5858 appIdentifier : this . $projectData . projectId ,
5959 projectFilesPath : path . join ( platformData . appDestinationDirectoryPath , constants . APP_FOLDER_NAME ) ,
6060 syncWorkingDirectory : path . join ( this . $projectData . projectDir , constants . APP_FOLDER_NAME ) ,
61+ excludedProjectDirsAndFiles : [ "**/*.js.map" , "**/*.ts" ]
6162 } ;
6263 this . $liveSyncServiceBase . sync ( liveSyncData ) . wait ( ) ;
6364 } ) . future < void > ( ) ( ) ;
You can’t perform that action at this time.
0 commit comments