Skip to content

Commit 9a4e967

Browse files
committed
Add some newlines to the console output
1 parent f8bb37f commit 9a4e967

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

global-cli/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ function createApp(name, verbose, version) {
9393

9494
console.log('Installing packages. This might take a couple minutes.');
9595
console.log('Installing react-scripts from npm...');
96+
console.log();
9697

9798
run(root, appName, version, verbose, originalDirectory);
9899
}

scripts/init.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
4848

4949
// Run another npm install for react and react-dom
5050
console.log('Installing react and react-dom from npm...');
51+
console.log();
5152
// TODO: having to do two npm installs is bad, can we avoid it?
5253
var args = [
5354
'install',
@@ -71,6 +72,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
7172
cdpath = appPath;
7273
}
7374

75+
console.log();
7476
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
7577
console.log('Inside that directory, you can run several commands:');
7678
console.log();

0 commit comments

Comments
 (0)