New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@expo/xcpretty

Package Overview
Dependencies
Maintainers
24
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/xcpretty - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

15

build/ExpoRunFormatter.js

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

const moduleNameTag = this.getPkgName('', target);
if (scriptName === 'Start Packager') {
const port = process.env.RCT_METRO_PORT || '8081';
const isDisabled = isTruthy(process.env.RCT_NO_LAUNCH_PACKAGER);
const status = isDisabled ? 'disabled' : `http://localhost:${port}`;
// Add some insight into if the bundler was started or not, and which port was used.
if (isDisabled) {
scriptName = chalk_1.default.gray(`${scriptName} (disabled)`);
}
else {
scriptName = scriptName + chalk_1.default.gray(` on ${status}`);
}
}
return Formatter_1.Formatter.format('Executing', [moduleNameTag, Formatter_1.Formatter.formatBreadCrumb(scriptName, target, project)]

@@ -127,2 +139,5 @@ .filter(Boolean)

};
function isTruthy(value) {
return value === 'true' || value === 1 || value === '1';
}
//# sourceMappingURL=ExpoRunFormatter.js.map

2

package.json
{
"name": "@expo/xcpretty",
"description": "Parse and format xcodebuild logs",
"version": "3.0.1",
"version": "3.0.2",
"main": "build/index.js",

@@ -6,0 +6,0 @@ "types": "build/index.d.ts",

Sorry, the diff of this file is not supported yet

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