test
This commit is contained in:
parent
009b314e1f
commit
1373db171c
|
@ -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",
|
||||||
|
|
|
@ -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!"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue