Merge Branch create-util #19

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

View File

@ -1,6 +1,6 @@
{
"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",
"type": "module",
"main": "./create-astro-ghostcms.mjs",

View File

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