Merge Branch create-util #19
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@matthiesenxyz/create-astro-ghostcms",
|
||||
"version": "0.0.1-dev21",
|
||||
"version": "0.0.1-dev22",
|
||||
"description": "Utility to quickly get started with our Integration and astro",
|
||||
"type": "module",
|
||||
"main": "./create-astro-ghostcms.mjs",
|
||||
|
|
|
@ -45,7 +45,9 @@ export async function main() {
|
|||
// 1. Say hello!
|
||||
p.intro(c.bgMagenta(c.black(` ${c.bold("Astro-GhostCMS Create Utility - By MatthiesenXYZ")} ${c.italic(dryRun ? "[Dry Run] ":" ")}`)))
|
||||
|
||||
p.note(c.bold(" Want to Initiate a git repo at the same time as deploying your project? \n - Use '--git' at the end of the command \n Using a package manager other than pnpm? \n - Use '--pkg-manager npm' or replace npm with yarn."))
|
||||
const gettingStarted = `${c.white(c.bold('Want to Initiate a git repo at the same time as deploying your project?'))} \n - ${c.white(c.underline(`Use ${c.yellow('--git')} at the end of the command`))} \n ${c.white(c.bold('Using a package manager other than pnpm?'))} \n - ${c.white(c.underline(`Use ${c.yellow(c.underline('--pkg-manager npm'))} or ${c.yellow(c.underline('--pkg-manager yarn'))}.`))}`
|
||||
|
||||
p.note(gettingStarted)
|
||||
|
||||
// 2. Get template to set up
|
||||
let [template, ...args] = flags._;
|
||||
|
|
Loading…
Reference in New Issue