update small cli fixes (#512)
This commit is contained in:
parent
3be502777a
commit
b0e41eaf51
2 changed files with 7 additions and 2 deletions
5
.changeset/ninety-sheep-know.md
Normal file
5
.changeset/ninety-sheep-know.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'create-astro': patch
|
||||
---
|
||||
|
||||
fix small output bugs
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue