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 1
1
NativeScript CLI Changelog
2
2
================
3
3
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
+
4
11
1.6.0 (2016, February 17)
5
12
==
6
13
Original file line number Diff line number Diff line change @@ -53,11 +53,12 @@ class LiveSyncService implements ILiveSyncService {
53
53
let platformData = this . $platformsData . getPlatformData ( platformLowerCase ) ;
54
54
this . ensureAndroidFrameworkVersion ( platformData ) . wait ( ) ;
55
55
56
- let liveSyncData = {
56
+ let liveSyncData : ILiveSyncData = {
57
57
platform : platform ,
58
58
appIdentifier : this . $projectData . projectId ,
59
59
projectFilesPath : path . join ( platformData . appDestinationDirectoryPath , constants . APP_FOLDER_NAME ) ,
60
60
syncWorkingDirectory : path . join ( this . $projectData . projectDir , constants . APP_FOLDER_NAME ) ,
61
+ excludedProjectDirsAndFiles : [ "**/*.js.map" , "**/*.ts" ]
61
62
} ;
62
63
this . $liveSyncServiceBase . sync ( liveSyncData ) . wait ( ) ;
63
64
} ) . future < void > ( ) ( ) ;
You can’t perform that action at this time.
0 commit comments