Skip to content

Commit 1af4441

Browse files
Merge branch 'release' into vladimirov/merge-rel-master
# Conflicts: # lib/common # package.json
2 parents e840f7a + 80ff90b commit 1af4441

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
NativeScript 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+
411
1.6.0 (2016, February 17)
512
==
613

lib/services/livesync/livesync-service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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>()();

0 commit comments

Comments
 (0)