Socket
Socket
Sign inDemoInstall

simctl

Package Overview
Dependencies
2
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.8 to 0.0.9

16

lib/simctl-extensions.js

@@ -33,17 +33,5 @@ /*

var extensions = {
startByApp : function(appName, deviceid) {
var command = 'open -a "' + appName + '"';
if (!deviceid) {
return shell.exec(command, { silent: true } );
} else {
command += util.format(command + ' --args -CurrentDeviceUDID %s', deviceid);
return shell.exec(command, { silent: true } );
}
},
start : function(deviceid) {
// try "iOS Simulator" first (Xcode 6), if that fails, try "Simulator" (Xcode 7)
if (extensions.startByApp('iOS Simulator', deviceid).code !== 0) {
extensions.startByApp('Simulator', deviceid);
}
var command = util.format('xcrun instruments -w "%s"', deviceid);
return shell.exec(command, { silent: true } );
},

@@ -50,0 +38,0 @@

2

package.json
{
"name": "simctl",
"version": "0.0.8",
"version": "0.0.9",
"description": "library for Xcode simctl utility on OS X",

@@ -5,0 +5,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc