diff --git a/demos-run-v1.js b/demos-run-v1.js index c49fe89..5b32e50 100644 --- a/demos-run-v1.js +++ b/demos-run-v1.js @@ -62,7 +62,7 @@ async function main() { await executeCommand( 'npm install chalk@4.1.2', '🎨 Installing chalk 4.1.2... Please wait as we add some color to your life!.', - 'Chalk 4.1.2 installed', + 'Chalk 4.1.2 installed\n', msg => msg ); @@ -73,7 +73,7 @@ async function main() { await executeCommand( 'git init', '⚙️ Initializing git... Git-er done.', - 'Git initialized!', + 'Git initialized!\n', chalk.yellow ); @@ -82,7 +82,7 @@ async function main() { await executeCommand( 'git pull https://username:access-token@git.tcf.ventures/TCF-Ventures-LLC/' + repoName, '📥 Importing repo files... Are these your files? 🃏', - 'Files Imported!', + 'Files Imported!\n', chalk.green ); @@ -90,7 +90,7 @@ async function main() { await executeCommand( 'npm install', '🔧 Installing other dependencies... This might take a few seconds.', - 'Dependencies installed', + 'Dependencies installed\n', chalk.blue );