update small cli fixes (#512)

This commit is contained in:
Fred K. Schott 2021-06-22 07:06:07 -07:00 committed by GitHub
parent 3be502777a
commit b0e41eaf51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'create-astro': patch
---
fix small output bugs

View file

@ -23,7 +23,7 @@ const POSTPROCESS_FILES = ['package.json']; // some files need processing after
export async function main() {
console.log('\n' + bold('Welcome to Astro!') + gray(` (create-astro v${version})`));
console.log(`If you encounter a problem, visit ${cyan('https://github.com/snowpack/astro/issues')} to search or file a new issue.\n`);
console.log(`If you encounter a problem, visit ${cyan('https://github.com/snowpackjs/astro/issues')} to search or file a new issue.\n`);
console.log(green(`>`) + gray(` Prepare for liftoff.`));
console.log(green(`>`) + gray(` Gathering mission details...`));
@ -88,7 +88,7 @@ export async function main() {
})
);
console.log(bold(green('✔ Copied project files')));
console.log(bold(green('✔') + ' Done!'));
console.log('\nNext steps:');
let i = 1;