Update demos-run-v1.js

chore: add newlines for clarity
This commit is contained in:
Casey B. 2024-07-26 01:53:23 +00:00
parent fb5b51d7c9
commit 0dbe8a99ce

View File

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