This commit is contained in:
Adam Matthiesen 2024-01-27 16:34:58 -08:00
parent 009b314e1f
commit 1373db171c
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@matthiesenxyz/create-astro-ghostcms", "name": "@matthiesenxyz/create-astro-ghostcms",
"version": "0.0.1-dev09", "version": "0.0.1-dev10",
"description": "Utility to quickly get started with our Integration and astro", "description": "Utility to quickly get started with our Integration and astro",
"type": "module", "type": "module",
"main": "./create-astro-ghostcms.mjs", "main": "./create-astro-ghostcms.mjs",

View File

@ -41,7 +41,7 @@ export async function createBasic(ctx) {
const fCheck = await prompts.group( const fCheck = await prompts.group(
{ installDeps: () => { installDeps: () =>
prompts.confirm({ prompts.confirm({
message: `${c.green('Install dependencies? (Recommended)')}`, message: `${c.cyan('Install dependencies? (Recommended)')}`,
initialValue: false, initialValue: false,
}), initGitRepo: () => }), initGitRepo: () =>
prompts.confirm({ prompts.confirm({
@ -88,7 +88,7 @@ const nextSteps = `If you didnt opt to install Dependencies dont forget to run:
success() success()
} }
function success() { async function success() {
prompts.note(nextSteps); prompts.note(nextSteps);
prompts.outro(c.green("Deployment Complete!")); prompts.outro(c.green("Deployment Complete!"));
} }