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(
'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
);