Add some newlines to the console output

This commit is contained in:
Dan Abramov
2016-07-26 12:11:16 +01:00
parent f8bb37fb31
commit 9a4e9678ad
2 changed files with 3 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
// Run another npm install for react and react-dom
console.log('Installing react and react-dom from npm...');
console.log();
// TODO: having to do two npm installs is bad, can we avoid it?
var args = [
'install',
@@ -71,6 +72,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
cdpath = appPath;
}
console.log();
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
console.log('Inside that directory, you can run several commands:');
console.log();