Updated a warning string in upgrade.js

Summary:
I inserted an 'in' in the warning message that is displayed when the user's package.json file doesn't have a valid version number for react native.

Test plan
---------------
-run upgrade.js on a project with an invalid version number.
Closes https://github.com/facebook/react-native/pull/7314

Differential Revision: D3245839

fb-gh-sync-id: e38f3be0884d8c75f9610faced85d5c81c24a49e
fbshipit-source-id: e38f3be0884d8c75f9610faced85d5c81c24a49e
This commit is contained in:
Sawyer Hood 2016-04-30 18:20:37 -07:00 коммит произвёл Facebook Github Bot 7
Родитель f8f9362c05
Коммит 9425bcff8f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ module.exports = function upgrade(args, config) {
} else {
console.log(
chalk.yellow(
'A valid version number for \'react-native\' is not specified your \'package.json\' file.'
'A valid version number for \'react-native\' is not specified in your \'package.json\' file.'
)
);
}