Merge Branch create-util #19

Merged
Adammatthiesen merged 62 commits from create-util into main 2024-01-28 09:42:14 +00:00
1 changed files with 3 additions and 5 deletions
Showing only changes of commit becdf6476f - Show all commits

View File

@ -87,17 +87,15 @@ export async function createBasic(ctx) {
success() success()
} }
const { black, bgYellow, yellow, green } = c.createColors(true)
const i = yellow;
const nextSteps = ` const nextSteps = `
If you didnt opt to install Dependencies dont forget to run: \n If you didnt opt to install Dependencies dont forget to run: \n
${i('npm install')} / ${i('pnpm install')} / ${i('yarn install')} inside your project directory! \n ${c.yellow('npm install')} / ${c.yellow('pnpm install')} / ${c.yellow('yarn install')} inside your project directory! \n
\n \n
${bgYellow+black("Dont forget to modify your .env file for YOUR ghost install!")} ` ${c.bgYellow(c.black("Dont forget to modify your .env file for YOUR ghost install!"))} `
function success() { function success() {
prompts.note(nextSteps); prompts.note(nextSteps);
prompts.outro(green("Deployment Complete!")); prompts.outro(c.green("Deployment Complete!"));
} }
} }