mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 14:48:25 +00:00
Summary: **Motivation** If the project is using yarn to manage its dependencies, we should be running 'yarn add' to upgrade the React Native dependency, rather than 'npm install'. **Test plan (required)** Running in a project that's in a bad state: Error: react-native version in "package.json" (0.29.2) doesn't match the installed version in "node_modules" (0.38.0). Try running "yarn" to fix this. Removed yarn.lock file, ran again: Error: react-native version in "package.json" (0.29.2) doesn't match the installed version in "node_modules" (0.38.0). Try running "npm install" to fix this. Running inside a folder that doesn't contain a `package.json` file: Error: Unable to find "/Users/mkonicek/Zero29App/package.json" or "/Users/mkonicek/Zero29App/node_modules/react-native/package.json". Make sure you ran "yarn" and that you are inside a React Native project. Removed yarn.lock file, ran again: Error: Unable to find "/Users/mkonicek/Zero29App/package.json" or "/Users/ Closes https://github.com/facebook/react-native/pull/11225 Differential Revision: D4261102 Pulled By: mkonicek fbshipit-source-id: b44ae91fe46f2c81b14616ca2868cc171692c895
75 lines
2.4 KiB
JavaScript
75 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
'use strict';
|
|
|
|
const {execSync} = require('child_process');
|
|
const semver = require('semver');
|
|
|
|
function checkDeclaredVersion(declaredVersion) {
|
|
if (!declaredVersion) {
|
|
throw new Error(
|
|
'Your "package.json" file doesn\'t seem to have "react-native" as a dependency.'
|
|
);
|
|
}
|
|
}
|
|
|
|
function checkMatchingVersions(currentVersion, declaredVersion, useYarn) {
|
|
if (!semver.satisfies(currentVersion, declaredVersion)) {
|
|
throw new Error(
|
|
'react-native version in "package.json" (' + declaredVersion + ') doesn\'t match ' +
|
|
'the installed version in "node_modules" (' + currentVersion + ').\n' +
|
|
(useYarn ?
|
|
'Try running "yarn" to fix this.' :
|
|
'Try running "npm install" to fix this.')
|
|
);
|
|
}
|
|
}
|
|
|
|
function checkReactPeerDependency(currentVersion, declaredReactVersion) {
|
|
if (semver.lt(currentVersion, '0.21.0') && !declaredReactVersion) {
|
|
throw new Error(
|
|
'Your "package.json" file doesn\'t seem to have "react" as a dependency.\n' +
|
|
'"react" was changed from a dependency to a peer dependency in react-native v0.21.0.\n' +
|
|
'Therefore, it\'s necessary to include "react" in your project\'s dependencies.\n' +
|
|
'Please run "npm install --save react", then re-run ' +
|
|
'"react-native upgrade".'
|
|
);
|
|
}
|
|
}
|
|
|
|
function checkGitAvailable() {
|
|
try {
|
|
execSync('git --version');
|
|
} catch (error) {
|
|
throw new Error(
|
|
'"react-native-git-upgrade" requires "git" to be available in path. ' +
|
|
'Please install Git (https://git-scm.com)"'
|
|
);
|
|
}
|
|
}
|
|
|
|
function checkNewVersionValid(newVersion, requestedVersion) {
|
|
if (!semver.valid(newVersion) && requestedVersion) {
|
|
throw new Error(
|
|
'The specified version of React Native ' + requestedVersion + ' doesn\'t exist.\n' +
|
|
'Re-run the react-native-git-upgrade command with an existing version,\n' +
|
|
'for example: "react-native-git-upgrade 0.38.0",\n' +
|
|
'or without arguments to upgrade to the latest: "react-native-git-upgrade".'
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
checkDeclaredVersion,
|
|
checkMatchingVersions,
|
|
checkReactPeerDependency,
|
|
checkGitAvailable,
|
|
checkNewVersionValid,
|
|
};
|