Adds validation check for "React" package name

- "React" is a reserve word and cannot be used as a project name since it will break the Sample app when generated
This commit is contained in:
Dave Sibiski 2015-05-23 16:28:04 -04:00
Родитель 4673dca0b0
Коммит 90f15940fa
1 изменённых файлов: 9 добавлений и 0 удалений

9
react-native-cli/index.js поставляемый
Просмотреть файл

@ -65,6 +65,15 @@ function validatePackageName(name) {
);
process.exit(1);
}
if (name === 'React') {
console.error(
'"%s" is not a valid name for a project. Please do not use the reserve ' +
'word "React".',
name
);
process.exit(1);
}
}
function init(name) {