Skip to content

Commit ec1fc60

Browse files
committed
Fix styling and update dependencies
1 parent a088373 commit ec1fc60

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

lib/common

lib/services/ios-debug-service.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import semver = require("semver");
1212
import temp = require("temp");
1313
import byline = require("byline");
1414

15-
1615
module notification {
1716
function formatNotification(bundleId: string, notification: string) {
1817
return `${bundleId}:NativeScript.Debug.${notification}`;
@@ -125,15 +124,15 @@ class IOSDebugService implements IDebugService {
125124

126125
lineStream.on('data', (line: NodeBuffer) => {
127126
let lineText = line.toString();
128-
if(lineText && _.startsWith(lineText, emulatorPackage.packageName)) {
127+
if(lineText && _.startsWith(lineText, emulatorPackage.packageName)) {
129128
let pid = _.trimLeft(lineText, emulatorPackage.packageName + ": ");
130-
129+
131130
this.$childProcess.exec(`lldb -p ${pid} -o "process continue"`);
132131
} else {
133132
process.stdout.write(line + "\n");
134133
}
135134
});
136-
135+
137136
this.wireDebuggerClient(() => net.connect(InspectorBackendPort)).wait();
138137
}).future<void>()();
139138
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"gulp": "3.9.0",
4242
"iconv-lite": "0.4.11",
4343
"inquirer": "0.9.0",
44-
"ios-sim-portable": "1.0.9-beta",
44+
"ios-sim-portable": "1.0.10-alpha",
4545
"lockfile": "1.0.1",
4646
"lodash": "3.10.0",
4747
"log4js": "0.6.26",

0 commit comments

Comments
 (0)