Skip to content

Commit dd01bae

Browse files
Merge pull request #4361 from NativeScript/release-patch
chore: merge release-patch in release
2 parents 3569805 + 1311ff8 commit dd01bae

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

lib/services/livesync/ios-device-livesync-service.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ export class IOSDeviceLiveSyncService extends DeviceLiveSyncServiceBase implemen
2424
}
2525

2626
const appId = projectData.projectIdentifiers.ios;
27-
this.socket = await this.device.getDebugSocket(appId, projectData.projectName);
27+
try {
28+
this.socket = await this.device.getDebugSocket(appId, projectData.projectName);
29+
} catch (err) {
30+
this.$logger.trace(`Error while connecting to the debug socket. Error is:`, err);
31+
}
32+
2833
if (!this.socket) {
2934
return false;
3035
}

npm-shrinkwrap.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nativescript",
33
"preferGlobal": true,
4-
"version": "5.2.0",
4+
"version": "5.2.1",
55
"author": "Telerik <[email protected]>",
66
"description": "Command-line interface for building NativeScript projects",
77
"bin": {
@@ -50,7 +50,7 @@
5050
"istextorbinary": "2.2.1",
5151
"jimp": "0.2.28",
5252
"lockfile": "1.0.3",
53-
"lodash": "4.17.10",
53+
"lodash": "4.17.11",
5454
"log4js": "1.0.1",
5555
"marked": "0.5.1",
5656
"marked-terminal": "3.1.1",

0 commit comments

Comments
 (0)