mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-17 12:19:12 +08:00
Summary:
Just some small changes that made the core easier for me to understand as I went through it.
**Test plan (required)**
$ cd react-native
# "Install globally" without using Sinopia :)
$ cp -r react-native-git-upgrade /usr/local/lib/node_modules/
$ cd ~
$ react-native init Zero29App --version=0.29.2
$ cd Zero29App
Made a small change in `MainApplication.java` to introduce a conflict with the new template.
$ git init && git add . && git commit -m "Initial commit"
$ react-native-git-upgrade
Worked, printed the conflicting file. Output: http://pastie.org/10972793
$ git reset --hard
$ react-native-git-upgrade --verbose
Worked, printed the conflicting file. Output: http://pastie.org/10972796
In both cases (with and without --verbose) the output of `git st` was http://pastie.org/10972795
Closes https://github.com/facebook/react-native/pull/11197
Differential Revision: D4251008
Pulled By: mkonicek
fbshipit-source-id: c5bbbeaf996cb5cb46cccc12fd1da7634cc23520
73 lines
2.3 KiB
JavaScript
73 lines
2.3 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) {
|
|
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' +
|
|
'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,
|
|
};
|