Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Commit f06b56e

Browse files
Update ios-device-lib bersion
1 parent 2c2a5db commit f06b56e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

mobile/ios/device/ios-device-operations.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,11 @@ export class IOSDeviceOperations implements IIOSDeviceOperations, IDisposable {
180180
}
181181
}
182182

183-
return _.groupBy(result, r => (<any>r).deviceId);
183+
const groupedResults = _.groupBy(result, r => (<any>r).deviceId);
184+
this.$logger.trace("Received multiple results:");
185+
this.$logger.trace(groupedResults);
186+
187+
return groupedResults;
184188
}
185189

186190
private assertIsInitialized(): void {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"gaze": "1.0.0",
3838
"iconv-lite": "0.4.3",
3939
"inquirer": "0.8.2",
40-
"ios-device-lib": "0.1.0",
40+
"ios-device-lib": "0.2.0",
4141
"ios-sim-portable": "~2.0.0",
4242
"lodash": "4.13.1",
4343
"log4js": "0.6.9",

0 commit comments

Comments
 (0)