Socket
Socket
Sign inDemoInstall

react-native-cli

Package Overview
Dependencies
Maintainers
6
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-cli - npm Package Compare versions

Comparing version 0.1.8 to 0.1.9

10

index.js

@@ -45,2 +45,3 @@ #!/usr/bin/env node

var semver = require('semver');
var os = require('os');

@@ -202,3 +203,10 @@ var CLI_MODULE_PATH = function() {

}
var proc = spawn('npm', args, spawnArgs);
var proc;
if (/^win/.test(process.platform)) {
args.unshift('npm');
args.unshift('/c');
proc = spawn('cmd', args, spawnArgs);
} else {
proc = spawn('npm', args, spawnArgs);
}
proc.on('close', function (code) {

@@ -205,0 +213,0 @@ if (code !== 0) {

2

package.json
{
"name": "react-native-cli",
"version": "0.1.8",
"version": "0.1.9",
"license" : "BSD-3-Clause",

@@ -5,0 +5,0 @@ "description": "The React Native CLI tools",

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