From 673b1713f3ae7c7467d2a33e493725974071e401 Mon Sep 17 00:00:00 2001 From: Radek Czemerys Date: Fri, 20 Jan 2017 17:28:26 -0800 Subject: [PATCH] Fix typo in ResolutionRequest.js Summary: Small fix: Fix typo in error message - should be `npm start --reset-cache` Closes https://github.com/facebook/react-native/pull/11983 Reviewed By: AsyncDBConnMarkedDownDBException Differential Revision: D4443749 Pulled By: hramos fbshipit-source-id: eeaa531180c58a85df482fe3162b2a0b2169c891 --- .../src/node-haste/DependencyGraph/ResolutionRequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js b/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js index cc295397..3abacbf9 100644 --- a/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js +++ b/react-packager/src/node-haste/DependencyGraph/ResolutionRequest.js @@ -372,7 +372,7 @@ class ResolutionRequest { `To resolve try the following:\n` + ` 1. Clear watchman watches: \`watchman watch-del-all\`.\n` + ` 2. Delete the \`node_modules\` folder: \`rm -rf node_modules && npm install\`.\n` + - ' 3. Reset packager cache: `rm -fr $TMPDIR/react-*` or `npm start -- --reset-cache`.' + ' 3. Reset packager cache: `rm -fr $TMPDIR/react-*` or `npm start --reset-cache`.' ); }); });