Skip to content

Commit 27f38b2

Browse files
Merge pull request #1509 from NativeScript/vladimirov/merge-rel-master
Merge release in master
2 parents e840f7a + e9da5ab commit 27f38b2

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
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/common

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)