Socket
Socket
Sign inDemoInstall

@react-native-community/cli-platform-ios

Package Overview
Dependencies
Maintainers
40
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-native-community/cli-platform-ios - npm Package Compare versions

Comparing version 5.0.1-alpha.2 to 5.0.1

build/commands/index.d.ts

5

build/commands/runIOS/index.js

@@ -131,3 +131,6 @@ "use strict";

try {
devices = (0, _parseXctraceIOSDevicesList.default)(_execa().default.sync('xcrun', ['xctrace', 'list', 'devices']).stderr);
const out = _execa().default.sync('xcrun', ['xctrace', 'list', 'devices']);
devices = (0, _parseXctraceIOSDevicesList.default)( // Xcode 12.5 introduced a change to output the list to stdout instead of stderr
out.stderr === '' ? out.stdout : out.stderr);
} catch (e) {

@@ -134,0 +137,0 @@ _cliTools().logger.warn('Support for Xcode 11 and older is deprecated. Please upgrade to Xcode 12.');

13

package.json
{
"name": "@react-native-community/cli-platform-ios",
"version": "5.0.1-alpha.2",
"version": "5.0.1",
"license": "MIT",

@@ -10,3 +10,3 @@ "main": "build/index.js",

"dependencies": {
"@react-native-community/cli-tools": "^5.0.1-alpha.1",
"@react-native-community/cli-tools": "^5.0.1",
"chalk": "^3.0.0",

@@ -20,3 +20,3 @@ "glob": "^7.1.3",

"devDependencies": {
"@react-native-community/cli-types": "^5.0.1-alpha.1",
"@react-native-community/cli-types": "^5.0.1",
"@types/glob": "^7.1.1",

@@ -34,3 +34,8 @@ "@types/js-yaml": "^3.12.1",

],
"gitHead": "050531afffd5df947cd610d4f919bd5001d793cb"
"homepage": "https://github.com/react-native-community/cli/tree/master/packages/platform-ios",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/cli.git",
"directory": "packages/platform-ios"
}
}
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