set install deps to true by default
This commit is contained in:
parent
1839d9febf
commit
3a536c1243
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@matthiesenxyz/create-astro-ghostcms",
|
"name": "@matthiesenxyz/create-astro-ghostcms",
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"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",
|
||||||
|
|
|
@ -43,7 +43,7 @@ export async function createProject(ctx) {
|
||||||
const fCheck = await p.group({
|
const fCheck = await p.group({
|
||||||
installDeps: () => p.confirm({
|
installDeps: () => p.confirm({
|
||||||
message: `${c.cyan('Install dependencies? (Recommended)')}`,
|
message: `${c.cyan('Install dependencies? (Recommended)')}`,
|
||||||
initialValue: false,
|
initialValue: true,
|
||||||
}),
|
}),
|
||||||
//GitRepo: () => p.confirm({
|
//GitRepo: () => p.confirm({
|
||||||
// message: `${c.cyan('Initialize a Git repository?')} ${c.italic(c.gray("( Tip: This Option gets Stuck Press Enter Twice if you get no reponse! )"))}`,
|
// message: `${c.cyan('Initialize a Git repository?')} ${c.italic(c.gray("( Tip: This Option gets Stuck Press Enter Twice if you get no reponse! )"))}`,
|
||||||
|
|
Loading…
Reference in New Issue