chore: updated init commands 86739d76
Steve · 2026-01-29 00:17 2 file(s) · +37 −10
packages/cli/src/commands/init.ts +7 −9
28 28
		}
29 29
30 30
		consola.box(
31 -
			"Publisher Configuration Setup\n\nLet's set up your publisher configuration.",
31 +
			"Sequoia Configuration Setup\n\n" +
32 +
				"Follow the prompts to build your config for publishing",
32 33
		);
33 34
34 35
		const siteUrl = await consola.prompt(
82 83
		);
83 84
84 85
		// Path prefix for posts
85 -
		const pathPrefix = await consola.prompt(
86 -
			"URL path prefix for posts:",
87 -
			{
88 -
				type: "text",
89 -
				default: "/posts",
90 -
				placeholder: "/posts, /blog, /articles, etc.",
91 -
			},
92 -
		);
86 +
		const pathPrefix = await consola.prompt("URL path prefix for posts:", {
87 +
			type: "text",
88 +
			default: "/posts",
89 +
			placeholder: "/posts, /blog, /articles, etc.",
90 +
		});
93 91
94 92
		// Frontmatter mapping configuration
95 93
		consola.info(
packages/cli/src/index.ts +30 −1
9 9
10 10
const app = subcommands({
11 11
	name: "sequoia",
12 -
	description: "Publish evergreen content to the ATmosphere",
12 +
	description: `
13 +
14 +
                        *#######*
15 +
                     =###*=: :=*###=
16 +
                    ###.          ###
17 +
                   *#*             *#*
18 +
                  *##               ##*
19 +
                  *#*               *##
20 +
                  *##               ###
21 +
                 =##+       :       +##=
22 +
                =##.       +#*        ##=
23 +
                ##=   *#+  +#*        =##
24 +
               =#*     *##=*#*         *#+
25 +
               +#*      .####*  .*:    *#*
26 +
               =#*        =##* *##=    *#+
27 +
                ##=        +####+     =##
28 +
                =##.       +##*       ##=
29 +
                 =##+      +#*      +##=
30 +
                   *##*    +#*    *##*
31 +
                     *#+   +#*   +#*
32 +
                           +#*
33 +
                           +#*
34 +
                           +#*
35 +
                           *#*
36 +
                       +#########*
37 +
38 +
Publish evergreen content to the ATmosphere
39 +
https://tanlged.org/stevedylan.dev/sequoia
40 +
41 +
	`,
13 42
	version: "0.1.0",
14 43
	cmds: {
15 44
		auth: authCommand,