Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ios-sim-portable

Package Overview
Dependencies
Maintainers
5
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ios-sim-portable - npm Package Compare versions

Comparing version 4.0.4 to 4.0.5

3

lib/iphone-simulator-xcode-simctl.js

@@ -11,2 +11,3 @@ "use strict";

const childProcess = require("./child-process");
const child_process = require("child_process");
const errors = require("./errors");

@@ -156,3 +157,3 @@ const common = require("./iphone-simulator-common");

const logFilePath = path.join(osenv.home(), "Library", "Logs", "CoreSimulator", deviceId, "system.log");
this.deviceLogChildProcess = childProcess.spawn("tail", ['-f', '-n', '1', logFilePath]);
this.deviceLogChildProcess = child_process.spawn("tail", ['-f', '-n', '1', logFilePath]);
fulfillSafe();

@@ -159,0 +160,0 @@ }

@@ -14,2 +14,3 @@ "use strict";

const _ = require("lodash");
const fs = require("fs");
class Simctl {

@@ -53,3 +54,4 @@ launch(deviceId, appIdentifier, options) {

try {
return yield this.spawnAsync("get_app_container", [deviceId, appIdentifier]);
const appContainerPath = yield this.spawnAsync("get_app_container", [deviceId, appIdentifier]);
return fs.existsSync(appContainerPath) ? appContainerPath : null;
}

@@ -56,0 +58,0 @@ catch (e) {

{
"name": "ios-sim-portable",
"version": "4.0.4",
"version": "4.0.5",
"description": "",

@@ -5,0 +5,0 @@ "main": "./lib/ios-sim.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc