Skip to content

Commit

Permalink
chore: update RN docs links to reactnative.dev (#1016)
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee authored Feb 25, 2020
1 parent 69c3703 commit 5c7a793
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {

return logManualInstallation({
healthcheck: 'Android SDK',
url: 'https://facebook.github.io/react-native/docs/getting-started',
url: 'https://reactnative.dev/docs/getting-started',
});
},
} as HealthCheckInterface;
14 changes: 7 additions & 7 deletions packages/cli/src/commands/server/middleware/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>React Native</title>
</head>
<body>
<p>React Native packager is running.</p>
<p><a href="http://facebook.github.io/react-native/">Visit documentation</a></p>
</body>
<head>
<title>React Native</title>
</head>
<body>
<p>React Native packager is running.</p>
<p><a href="https://reactnative.dev">Visit documentation</a></p>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function runOnAllDevices(
function createInstallError(error: Error & {stderr: string}) {
const stderr = (error.stderr || '').toString();
const docs =
'https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment';
'https://reactnative.dev/docs/getting-started.html#android-development-environment';
let message = `Make sure you have the Android development environment set up: ${chalk.underline.dim(
docs,
)}`;
Expand Down

0 comments on commit 5c7a793

Please sign in to comment.