Merge branch 'main' into main
This commit is contained in:
commit
233604fcfd
@ -71,6 +71,7 @@ const LOBSTER_ASCII = [
|
|||||||
"██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
|
"██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
|
||||||
"▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
|
"▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
|
||||||
" 🦞 FRESH DAILY 🦞 ",
|
" 🦞 FRESH DAILY 🦞 ",
|
||||||
|
" ",
|
||||||
];
|
];
|
||||||
|
|
||||||
export function formatCliBannerArt(options: BannerOptions = {}): string {
|
export function formatCliBannerArt(options: BannerOptions = {}): string {
|
||||||
|
|||||||
@ -168,6 +168,11 @@ const entries: SubCliEntry[] = [
|
|||||||
name: "pairing",
|
name: "pairing",
|
||||||
description: "Pairing helpers",
|
description: "Pairing helpers",
|
||||||
register: async (program) => {
|
register: async (program) => {
|
||||||
|
// Initialize plugins before registering pairing CLI.
|
||||||
|
// The pairing CLI calls listPairingChannels() at registration time,
|
||||||
|
// which requires the plugin registry to be populated with channel plugins.
|
||||||
|
const { registerPluginCliCommands } = await import("../../plugins/cli.js");
|
||||||
|
registerPluginCliCommands(program, await loadConfig());
|
||||||
const mod = await import("../pairing-cli.js");
|
const mod = await import("../pairing-cli.js");
|
||||||
mod.registerPairingCli(program);
|
mod.registerPairingCli(program);
|
||||||
},
|
},
|
||||||
|
|||||||
@ -69,7 +69,8 @@ export function printWizardHeader(runtime: RuntimeEnv) {
|
|||||||
"██░█░█░██░███░██░██████░████░▄▄▀██░███░███░████",
|
"██░█░█░██░███░██░██████░████░▄▄▀██░███░███░████",
|
||||||
"██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
|
"██░███░██░▀▀▀░██░▀▀░███░████░▀▀░██░▀▀▀░███░████",
|
||||||
"▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
|
"▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
|
||||||
" 🦞 FRESH DAILY 🦞 ",
|
" 🦞 FRESH DAILY 🦞 ",
|
||||||
|
" ",
|
||||||
].join("\n");
|
].join("\n");
|
||||||
runtime.log(header);
|
runtime.log(header);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user