Commit 9a4e9678 authored by Dan Abramov's avatar Dan Abramov
Browse files

Add some newlines to the console output

parent f8bb37fb
No related merge requests found
Showing with 3 additions and 0 deletions
+3 -0
......@@ -93,6 +93,7 @@ function createApp(name, verbose, version) {
console.log('Installing packages. This might take a couple minutes.');
console.log('Installing react-scripts from npm...');
console.log();
run(root, appName, version, verbose, originalDirectory);
}
......
......@@ -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();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment