Files
openclaw/scripts/write-official-channel-catalog.d.mts
Nimrod Gutman b84a130788 fix(release): preserve shipped channel surfaces in npm tar (#52913)
* fix(channels): ship official channel catalog (#52838)

* fix(release): keep shipped bundles in npm tar (#52838)

* build(release): fix rebased release-check helpers (#52838)
2026-03-23 17:39:22 +02:00

20 lines
551 B
TypeScript

export const OFFICIAL_CHANNEL_CATALOG_RELATIVE_PATH: "dist/channel-catalog.json";
export function buildOfficialChannelCatalog(params?: { repoRoot?: string; cwd?: string }): {
entries: Array<{
name: string;
version?: string;
description?: string;
openclaw: {
channel: Record<string, unknown>;
install: {
npmSpec: string;
localPath?: string;
defaultChoice?: "npm" | "local";
};
};
}>;
};
export function writeOfficialChannelCatalog(params?: { repoRoot?: string; cwd?: string }): void;