From 86739d7687723917db72c24c4d3ee34a2a71c26d Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 29 Jan 2026 00:17:35 -0500 Subject: [PATCH] chore: updated init commands --- packages/cli/src/commands/init.ts | 16 +++++++--------- packages/cli/src/index.ts | 31 ++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 10 deletions(-) diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index 1d02c51..3a80ed1 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -28,7 +28,8 @@ export const initCommand = command({ } consola.box( - "Publisher Configuration Setup\n\nLet's set up your publisher configuration.", + "Sequoia Configuration Setup\n\n" + + "Follow the prompts to build your config for publishing", ); const siteUrl = await consola.prompt( @@ -82,14 +83,11 @@ export const initCommand = command({ ); // Path prefix for posts - const pathPrefix = await consola.prompt( - "URL path prefix for posts:", - { - type: "text", - default: "/posts", - placeholder: "/posts, /blog, /articles, etc.", - }, - ); + const pathPrefix = await consola.prompt("URL path prefix for posts:", { + type: "text", + default: "/posts", + placeholder: "/posts, /blog, /articles, etc.", + }); // Frontmatter mapping configuration consola.info( diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 4b9f8fd..d323623 100755 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -9,7 +9,36 @@ import { syncCommand } from "./commands/sync"; const app = subcommands({ name: "sequoia", - description: "Publish evergreen content to the ATmosphere", + description: ` + + *#######* + =###*=: :=*###= + ###. ### + *#* *#* + *## ##* + *#* *## + *## ### + =##+ : +##= + =##. +#* ##= + ##= *#+ +#* =## + =#* *##=*#* *#+ + +#* .####* .*: *#* + =#* =##* *##= *#+ + ##= +####+ =## + =##. +##* ##= + =##+ +#* +##= + *##* +#* *##* + *#+ +#* +#* + +#* + +#* + +#* + *#* + +#########* + +Publish evergreen content to the ATmosphere +https://tanlged.org/stevedylan.dev/sequoia + + `, version: "0.1.0", cmds: { auth: authCommand, -- 2.51.2