From a0a85f81f0ef13d395719dd8f8903a3c3ee2344a Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Thu, 17 Jan 2019 08:26:56 +0200 Subject: [PATCH] fix: error may be raised during restart of app on ios Sim On slower mac machines, an error may be raised during restart of app on iOS Simulator. The problem is that we stop the application and try to start it after that. However, the stop method may be resolved before the application is actually killed. Trying to start it after that leads to undefined behavior and errors in some cases. To fix this, update ios-sim-portable to 4.0.8 where a possible fix is applied. --- npm-shrinkwrap.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index f841d26466..ba073197ac 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3981,9 +3981,9 @@ } }, "ios-sim-portable": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/ios-sim-portable/-/ios-sim-portable-4.0.7.tgz", - "integrity": "sha512-8tbgbyOTLn4PVdv/40C8tWeaKriZ+w7yOof8xC6qFlAUGpkKopHJ954akekG2sqVUnfTI3ibaXgF5tkxGtrhGA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/ios-sim-portable/-/ios-sim-portable-4.0.8.tgz", + "integrity": "sha512-/yk204on3c1qFux7h3u3rS6z051yB6OzVTLoGry210JizaqKYmkPJr6KKfLSeZIyZxF4GsBZI2KMzlFbavjUhA==", "requires": { "bplist-parser": "https://github.com/telerik/node-bplist-parser/tarball/master", "colors": "0.6.2", diff --git a/package.json b/package.json index 77a567086d..6a4d96ee21 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "inquirer": "6.2.0", "ios-device-lib": "0.5.0", "ios-mobileprovision-finder": "1.0.10", - "ios-sim-portable": "4.0.7", + "ios-sim-portable": "4.0.8", "istextorbinary": "2.2.1", "jimp": "0.2.28", "lockfile": "1.0.3",