mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
0a5967dbfe
This adds a react-native binary that just output some instructions.
8 lines
252 B
JavaScript
Executable File
8 lines
252 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
console.error([
|
|
'\033[31mLooks like you installed react-native globally, maybe you meant react-native-cli?',
|
|
'To fix the issue, run:\033[0m',
|
|
'npm uninstall -g react-native',
|
|
'npm install -g react-native-cli'
|
|
].join('\n'));
|