From 1103a91d8d7a0061ba17efdedccb1a0e3e440d39 Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Fri, 9 Dec 2016 13:04:57 -0800 Subject: [PATCH] CLI: Remove message 'This might take a while' Summary: We now show the npm progress bar. Reviewed By: mkonicek Differential Revision: D4307964 Ninja: OSS only, nit fbshipit-source-id: 7338ab08abe8cf6354f9a9c6d36c51b0cffc69ee --- react-native-cli/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-cli/index.js b/react-native-cli/index.js index 91554409e..75152521f 100755 --- a/react-native-cli/index.js +++ b/react-native-cli/index.js @@ -277,7 +277,7 @@ function run(root, projectName, options) { installCommand += ' --verbose'; } } else { - console.log('Installing ' + getInstallPackage(rnPackage) + '. This might take a while...'); + console.log('Installing ' + getInstallPackage(rnPackage) + '...'); if (!forceNpmClient) { console.log('Consider installing yarn to make this faster: https://yarnpkg.com'); }