@cfbender/cesium 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +97 -3
  2. package/README.md +8 -8
  3. package/package.json +19 -17
  4. package/src/cli/commands/ls.ts +62 -65
  5. package/src/cli/commands/open.ts +47 -62
  6. package/src/cli/commands/prune.ts +59 -71
  7. package/src/cli/commands/restart.ts +100 -12
  8. package/src/cli/commands/serve.ts +119 -116
  9. package/src/cli/commands/stop.ts +51 -84
  10. package/src/cli/commands/theme.ts +54 -92
  11. package/src/cli/index.ts +17 -70
  12. package/src/index.ts +4 -1
  13. package/src/prompt/field-reference.ts +2 -2
  14. package/src/prompt/system-fragment.md +46 -16
  15. package/src/render/blocks/catalog.ts +2 -0
  16. package/src/render/blocks/diff/myers.ts +221 -0
  17. package/src/render/blocks/diff/parse-unified.ts +101 -0
  18. package/src/render/blocks/highlight.ts +8 -11
  19. package/src/render/blocks/markdown.ts +28 -7
  20. package/src/render/blocks/render.ts +3 -0
  21. package/src/render/blocks/renderers/code.ts +1 -3
  22. package/src/render/blocks/renderers/compare-table.ts +3 -4
  23. package/src/render/blocks/renderers/diagram.ts +2 -5
  24. package/src/render/blocks/renderers/diff.ts +378 -0
  25. package/src/render/blocks/renderers/prose.ts +1 -2
  26. package/src/render/blocks/renderers/timeline.ts +2 -1
  27. package/src/render/blocks/themes/claret-dark.ts +1 -6
  28. package/src/render/blocks/themes/claret-light.ts +1 -6
  29. package/src/render/blocks/types.ts +13 -1
  30. package/src/render/blocks/validate-block.ts +19 -9
  31. package/src/render/theme.ts +149 -0
  32. package/src/render/validate.ts +53 -9
  33. package/src/server/api.ts +112 -124
  34. package/src/server/favicon.ts +8 -16
  35. package/src/server/http.ts +101 -106
  36. package/src/server/lifecycle.ts +12 -6
  37. package/src/storage/assets.ts +8 -10
  38. package/src/storage/index-gen.ts +2 -3
  39. package/src/storage/theme-write.ts +17 -3
  40. package/src/tools/publish.ts +1 -3
  41. package/src/tools/styleguide.ts +3 -7
  42. package/src/tools/wait.ts +1 -0
@@ -1,10 +1,15 @@
1
1
  // cesium stop — kill the running cesium server cross-process via PID file.
2
2
 
3
- import { parseArgs } from "node:util";
3
+ import { defineCommand } from "citty";
4
4
  import { loadConfig, type CesiumConfig } from "../../config.ts";
5
5
  import { stopServer } from "../../server/stop.ts";
6
6
  import type { StopServerArgs } from "../../server/stop.ts";
7
7
 
8
+ export interface StopArgs {
9
+ force: boolean;
10
+ timeoutMs: number;
11
+ }
12
+
8
13
  export interface StopContext {
9
14
  stdout: { write: (s: string) => void };
10
15
  stderr: { write: (s: string) => void };
@@ -22,109 +27,71 @@ function defaultCtx(): StopContext {
22
27
  };
23
28
  }
24
29
 
25
- export interface StopOptions {
26
- force: boolean;
27
- timeout: number;
28
- }
29
-
30
- /** Parse stop-command argv. Returns null on parse error. */
31
- export function parseStopArgs(
32
- argv: string[],
33
- ctx: Pick<StopContext, "stdout" | "stderr">,
34
- ): StopOptions | null | "help" {
35
- let values: { force: boolean; timeout: string | undefined; help: boolean };
30
+ export async function runStop(args: StopArgs, ctxOverride?: Partial<StopContext>): Promise<number> {
31
+ const ctx: StopContext = { ...defaultCtx(), ...ctxOverride };
36
32
 
37
- try {
38
- const parsed = parseArgs({
39
- args: argv,
40
- options: {
41
- force: { type: "boolean", short: "f", default: false },
42
- timeout: { type: "string" },
43
- help: { type: "boolean", short: "h", default: false },
44
- },
45
- allowPositionals: false,
46
- strict: true,
47
- });
48
- values = parsed.values as typeof values;
49
- } catch (err) {
50
- const e = err as Error;
51
- ctx.stderr.write(`cesium stop: ${e.message}\n`);
52
- ctx.stderr.write(`Usage: cesium stop [--force] [--timeout <ms>]\n`);
53
- return null;
54
- }
55
-
56
- if (values.help) {
57
- ctx.stdout.write(
58
- [
59
- "Usage: cesium stop [options]",
60
- "",
61
- "Options:",
62
- " --force, -f SIGKILL immediately — skip the SIGTERM grace period",
63
- " --timeout <ms> Grace period in ms before SIGKILL (default: 3000)",
64
- " --help, -h Show this help message",
65
- "",
66
- "Stops the running cesium server via its PID file. Idempotent when no",
67
- "server is running.",
68
- "",
69
- ].join("\n"),
70
- );
71
- return "help";
72
- }
73
-
74
- let timeout = 3000;
75
- if (values.timeout !== undefined) {
76
- const t = parseInt(values.timeout, 10);
77
- if (isNaN(t) || t < 0) {
78
- ctx.stderr.write(`cesium stop: --timeout must be a non-negative integer\n`);
79
- return null;
80
- }
81
- timeout = t;
33
+ if (!Number.isInteger(args.timeoutMs) || args.timeoutMs < 0) {
34
+ ctx.stderr.write(`cesium stop: --timeout must be a non-negative integer\n`);
35
+ return 1;
82
36
  }
83
37
 
84
- return { force: values.force, timeout };
85
- }
86
-
87
- export async function stopCommand(argv: string[], ctx?: Partial<StopContext>): Promise<number> {
88
- const resolved: StopContext = { ...defaultCtx(), ...ctx };
89
-
90
- const parseResult = parseStopArgs(argv, resolved);
91
- if (parseResult === null) return 1;
92
- if (parseResult === "help") return 0;
93
-
94
- const opts = parseResult;
95
- const cfg = (resolved.loadConfig ?? loadConfig)();
38
+ const cfg = (ctx.loadConfig ?? loadConfig)();
96
39
 
97
40
  const stopArgs: StopServerArgs = {
98
41
  stateDir: cfg.stateDir,
99
- force: opts.force,
100
- timeoutMs: opts.timeout,
42
+ force: args.force,
43
+ timeoutMs: args.timeoutMs,
101
44
  };
102
- if (resolved.isAlive !== undefined) {
103
- stopArgs.isAlive = resolved.isAlive;
104
- }
105
- if (resolved.killProcess !== undefined) {
106
- stopArgs.killProcess = resolved.killProcess;
107
- }
108
- if (resolved.sleep !== undefined) {
109
- stopArgs.sleep = resolved.sleep;
110
- }
45
+ if (ctx.isAlive !== undefined) stopArgs.isAlive = ctx.isAlive;
46
+ if (ctx.killProcess !== undefined) stopArgs.killProcess = ctx.killProcess;
47
+ if (ctx.sleep !== undefined) stopArgs.sleep = ctx.sleep;
111
48
 
112
49
  const outcome = await stopServer(stopArgs);
113
50
 
114
51
  switch (outcome.kind) {
115
52
  case "not-running":
116
- resolved.stdout.write("no cesium server running\n");
53
+ ctx.stdout.write("no cesium server running\n");
117
54
  return 0;
118
55
  case "stale":
119
- resolved.stdout.write("server not running (stale PID file removed)\n");
56
+ ctx.stdout.write("server not running (stale PID file removed)\n");
120
57
  return 0;
121
58
  case "stopped":
122
- resolved.stdout.write(`stopped cesium server (pid ${outcome.pid}, port ${outcome.port})\n`);
59
+ ctx.stdout.write(`stopped cesium server (pid ${outcome.pid}, port ${outcome.port})\n`);
123
60
  return 0;
124
61
  case "permission-denied":
125
- resolved.stderr.write(
62
+ ctx.stderr.write(
126
63
  `cesium stop: permission denied — process ${outcome.pid} is owned by another user\n`,
127
64
  );
128
65
  return 2;
129
66
  }
130
67
  }
68
+
69
+ export const stopCmd = defineCommand({
70
+ meta: {
71
+ name: "stop",
72
+ description:
73
+ "Stop the running cesium server via its PID file. Idempotent when no server is running.",
74
+ },
75
+ args: {
76
+ force: {
77
+ type: "boolean",
78
+ alias: "f",
79
+ default: false,
80
+ description: "SIGKILL immediately — skip the SIGTERM grace period",
81
+ },
82
+ timeout: {
83
+ type: "string",
84
+ default: "3000",
85
+ description: "Grace period in ms before SIGKILL",
86
+ },
87
+ },
88
+ async run({ args }) {
89
+ const t = parseInt(args.timeout, 10);
90
+ if (isNaN(t) || t < 0) {
91
+ process.stderr.write(`cesium stop: --timeout must be a non-negative integer\n`);
92
+ process.exit(1);
93
+ }
94
+ const code = await runStop({ force: args.force, timeoutMs: t });
95
+ if (code !== 0) process.exit(code);
96
+ },
97
+ });
@@ -1,6 +1,6 @@
1
1
  // cesium theme — show or apply the configured theme.
2
2
 
3
- import { parseArgs } from "node:util";
3
+ import { defineCommand } from "citty";
4
4
  import { readFile } from "node:fs/promises";
5
5
  import { loadConfig, type CesiumConfig } from "../../config.ts";
6
6
  import {
@@ -9,9 +9,8 @@ import {
9
9
  type ThemeTokens,
10
10
  type ThemePalette,
11
11
  } from "../../render/theme.ts";
12
- import { writeThemeCss, themeCssPath } from "../../storage/theme-write.ts";
12
+ import { writeThemeCss, themeCssPath, buildThemeCss } from "../../storage/theme-write.ts";
13
13
  import { writeFaviconSvg } from "../../storage/favicon-write.ts";
14
- import { themeTokensCss } from "../../render/theme.ts";
15
14
  import { atomicWrite } from "../../storage/write.ts";
16
15
  import { readdir } from "node:fs/promises";
17
16
  import { join } from "node:path";
@@ -75,7 +74,7 @@ function printTokenTable(
75
74
  }
76
75
 
77
76
  async function isWriteNeeded(cssPath: string, theme: ThemeTokens): Promise<boolean> {
78
- const expected = themeTokensCss(theme) + "\n";
77
+ const expected = buildThemeCss(theme);
79
78
  try {
80
79
  const existing = await readFile(cssPath, "utf8");
81
80
  return existing !== expected;
@@ -205,61 +204,12 @@ async function retrofitAll(
205
204
 
206
205
  // ─── Command ──────────────────────────────────────────────────────────────────
207
206
 
208
- export async function themeCommand(argv: string[], ctx?: Partial<ThemeContext>): Promise<number> {
209
- const resolved: ThemeContext = { ...defaultCtx(), ...ctx };
210
-
211
- const subcommand = argv[0];
212
- const rest = argv.slice(1);
213
-
214
- if (!subcommand || subcommand === "--help" || subcommand === "-h") {
215
- resolved.stdout.write(
216
- [
217
- "Usage: cesium theme <subcommand> [options]",
218
- "",
219
- "Subcommands:",
220
- " show Print resolved theme tokens",
221
- " apply [--rewrite-artifacts] Write theme.css from current config",
222
- "",
223
- "Options:",
224
- " --help, -h Show this help message",
225
- "",
226
- ].join("\n"),
227
- );
228
- return subcommand ? 0 : 1;
229
- }
230
-
231
- if (subcommand === "show") {
232
- return themeShowCommand(rest, resolved);
233
- }
234
-
235
- if (subcommand === "apply") {
236
- return themeApplyCommand(rest, resolved);
237
- }
238
-
239
- resolved.stderr.write(`cesium theme: unknown subcommand: ${subcommand}\n`);
240
- return 1;
207
+ export interface ThemeApplyArgs {
208
+ rewriteArtifacts: boolean;
241
209
  }
242
210
 
243
- async function themeShowCommand(argv: string[], ctx: ThemeContext): Promise<number> {
244
- let values: { help: boolean };
245
- try {
246
- const parsed = parseArgs({
247
- args: argv,
248
- options: { help: { type: "boolean", short: "h", default: false } },
249
- allowPositionals: false,
250
- strict: true,
251
- });
252
- values = parsed.values as typeof values;
253
- } catch (err) {
254
- const e = err as Error;
255
- ctx.stderr.write(`cesium theme show: ${e.message}\n`);
256
- return 1;
257
- }
258
-
259
- if (values.help) {
260
- ctx.stdout.write("Usage: cesium theme show\n\nPrint resolved theme tokens.\n\n");
261
- return 0;
262
- }
211
+ export async function runThemeShow(ctxOverride?: Partial<ThemeContext>): Promise<number> {
212
+ const ctx: ThemeContext = { ...defaultCtx(), ...ctxOverride };
263
213
 
264
214
  const cfg = (ctx.loadConfig ?? loadConfig)();
265
215
  const { theme, presetLabel } = resolveTheme(cfg);
@@ -270,47 +220,18 @@ async function themeShowCommand(argv: string[], ctx: ThemeContext): Promise<numb
270
220
  return 0;
271
221
  }
272
222
 
273
- async function themeApplyCommand(argv: string[], ctx: ThemeContext): Promise<number> {
274
- let values: { "rewrite-artifacts": boolean; help: boolean };
275
- try {
276
- const parsed = parseArgs({
277
- args: argv,
278
- options: {
279
- "rewrite-artifacts": { type: "boolean", default: false },
280
- help: { type: "boolean", short: "h", default: false },
281
- },
282
- allowPositionals: false,
283
- strict: true,
284
- });
285
- values = parsed.values as typeof values;
286
- } catch (err) {
287
- const e = err as Error;
288
- ctx.stderr.write(`cesium theme apply: ${e.message}\n`);
289
- return 1;
290
- }
291
-
292
- if (values.help) {
293
- ctx.stdout.write(
294
- [
295
- "Usage: cesium theme apply [--rewrite-artifacts]",
296
- "",
297
- "Write theme.css from the current config.",
298
- "",
299
- "Options:",
300
- " --rewrite-artifacts Retrofit existing artifacts and index pages with the theme link",
301
- " --help, -h Show this help message",
302
- "",
303
- ].join("\n"),
304
- );
305
- return 0;
306
- }
223
+ export async function runThemeApply(
224
+ args: ThemeApplyArgs,
225
+ ctxOverride?: Partial<ThemeContext>,
226
+ ): Promise<number> {
227
+ const ctx: ThemeContext = { ...defaultCtx(), ...ctxOverride };
307
228
 
308
229
  const cfg = (ctx.loadConfig ?? loadConfig)();
309
230
  const { theme, presetLabel } = resolveTheme(cfg);
310
231
  const cssPath = await writeThemeCss(cfg.stateDir, theme);
311
232
  await writeFaviconSvg(cfg.stateDir);
312
233
 
313
- if (values["rewrite-artifacts"]) {
234
+ if (args.rewriteArtifacts) {
314
235
  const { artifacts, indexes } = await retrofitAll(cfg.stateDir, ctx.stdout);
315
236
  ctx.stdout.write(
316
237
  [
@@ -333,3 +254,44 @@ async function themeApplyCommand(argv: string[], ctx: ThemeContext): Promise<num
333
254
 
334
255
  return 0;
335
256
  }
257
+
258
+ const themeShowCmd = defineCommand({
259
+ meta: {
260
+ name: "show",
261
+ description: "Print resolved theme tokens.",
262
+ },
263
+ args: {},
264
+ async run() {
265
+ const code = await runThemeShow();
266
+ if (code !== 0) process.exit(code);
267
+ },
268
+ });
269
+
270
+ const themeApplyCmd = defineCommand({
271
+ meta: {
272
+ name: "apply",
273
+ description: "Write theme.css from the current config.",
274
+ },
275
+ args: {
276
+ "rewrite-artifacts": {
277
+ type: "boolean",
278
+ default: false,
279
+ description: "Retrofit existing artifacts and index pages with the theme link",
280
+ },
281
+ },
282
+ async run({ args }) {
283
+ const code = await runThemeApply({ rewriteArtifacts: args["rewrite-artifacts"] });
284
+ if (code !== 0) process.exit(code);
285
+ },
286
+ });
287
+
288
+ export const themeCmd = defineCommand({
289
+ meta: {
290
+ name: "theme",
291
+ description: "Show or apply the configured theme.",
292
+ },
293
+ subCommands: {
294
+ show: themeShowCmd,
295
+ apply: themeApplyCmd,
296
+ },
297
+ });
package/src/cli/index.ts CHANGED
@@ -1,78 +1,25 @@
1
1
  #!/usr/bin/env bun
2
2
 
3
- import { parseArgs as _parseArgs } from "node:util";
3
+ import { defineCommand, runMain } from "citty";
4
4
  import pkg from "../../package.json" with { type: "json" };
5
- import { lsCommand } from "./commands/ls.ts";
6
- import { openCommand } from "./commands/open.ts";
7
- import { serveCommand } from "./commands/serve.ts";
8
- import { stopCommand } from "./commands/stop.ts";
9
- import { restartCommand } from "./commands/restart.ts";
10
- import { pruneCommand } from "./commands/prune.ts";
11
- import { themeCommand } from "./commands/theme.ts";
12
-
13
- const subcommand = process.argv[2];
14
- const rest = process.argv.slice(3);
15
5
 
16
6
  export const CESIUM_VERSION: string = pkg.version;
17
7
 
18
- const COMMANDS: Record<string, (argv: string[]) => Promise<number>> = {
19
- ls: lsCommand,
20
- open: openCommand,
21
- serve: serveCommand,
22
- stop: stopCommand,
23
- restart: restartCommand,
24
- prune: pruneCommand,
25
- theme: themeCommand,
26
- version: async () => {
27
- process.stdout.write(`cesium ${CESIUM_VERSION}\n`);
28
- return 0;
8
+ const main = defineCommand({
9
+ meta: {
10
+ name: "cesium",
11
+ version: pkg.version,
12
+ description: "artifact manager for opencode sessions",
29
13
  },
30
- };
31
-
32
- function printHelp(): void {
33
- process.stdout.write(
34
- [
35
- "cesium artifact manager for opencode sessions",
36
- "",
37
- "Usage: cesium <command> [options]",
38
- "",
39
- "Commands:",
40
- " ls List artifacts in the current project (or all with --all)",
41
- " open Open an artifact by id prefix in the browser",
42
- " serve Start the local HTTP server in the foreground",
43
- " stop Stop the running cesium server",
44
- " restart Stop and re-start the cesium server",
45
- " prune Delete artifacts older than a given duration",
46
- " theme Show or apply the configured theme",
47
- " version Print the cesium version",
48
- "",
49
- "Options:",
50
- " --help, -h Show this help message",
51
- " --version, -v Print the cesium version",
52
- "",
53
- "Run 'cesium <command> --help' for command-specific options.",
54
- "",
55
- ].join("\n"),
56
- );
57
- }
58
-
59
- async function main(): Promise<void> {
60
- if (subcommand === "--version" || subcommand === "-v") {
61
- process.stdout.write(`cesium ${CESIUM_VERSION}\n`);
62
- process.exit(0);
63
- }
64
- if (!subcommand || subcommand === "--help" || subcommand === "-h") {
65
- printHelp();
66
- process.exit(subcommand ? 0 : 1);
67
- }
68
- const fn = COMMANDS[subcommand];
69
- if (!fn) {
70
- process.stderr.write(`cesium: unknown command: ${subcommand}\n`);
71
- printHelp();
72
- process.exit(1);
73
- }
74
- const code = await fn(rest);
75
- process.exit(code);
76
- }
14
+ subCommands: {
15
+ ls: () => import("./commands/ls.ts").then((m) => m.lsCmd),
16
+ open: () => import("./commands/open.ts").then((m) => m.openCmd),
17
+ serve: () => import("./commands/serve.ts").then((m) => m.serveCmd),
18
+ stop: () => import("./commands/stop.ts").then((m) => m.stopCmd),
19
+ restart: () => import("./commands/restart.ts").then((m) => m.restartCmd),
20
+ prune: () => import("./commands/prune.ts").then((m) => m.pruneCmd),
21
+ theme: () => import("./commands/theme.ts").then((m) => m.themeCmd),
22
+ },
23
+ });
77
24
 
78
- await main();
25
+ await runMain(main);
package/src/index.ts CHANGED
@@ -17,7 +17,10 @@ const rawFragment = await readFile(
17
17
  "utf8",
18
18
  );
19
19
 
20
- const PROMPT_FRAGMENT = rawFragment.replace("{{BLOCK_FIELD_REFERENCE}}", generateBlockFieldReference());
20
+ const PROMPT_FRAGMENT = rawFragment.replace(
21
+ "{{BLOCK_FIELD_REFERENCE}}",
22
+ generateBlockFieldReference(),
23
+ );
21
24
 
22
25
  export const CesiumPlugin: Plugin = async (ctx): Promise<Hooks> => {
23
26
  return {
@@ -86,8 +86,8 @@ export function generateBlockFieldReference(): string {
86
86
  lines.push("");
87
87
  lines.push(
88
88
  "All `markdown` fields support `**bold**`, `*italic*`, `` `code` ``, lists, blockquotes, " +
89
- "and the safelisted inline tags `<kbd>`, `<span class=\"pill\">`, `<span class=\"tag\">`. " +
90
- "External URLs in links render as plain text.",
89
+ 'and the safelisted inline tags `<kbd>`, `<span class="pill">`, `<span class="tag">`. ' +
90
+ "External URLs in links render as plain text.",
91
91
  );
92
92
 
93
93
  return lines.join("\n");
@@ -20,22 +20,52 @@ You have access to six tools:
20
20
  ### Example
21
21
 
22
22
  ```json
23
- { "title": "Migration Guide", "kind": "plan", "blocks": [
24
- { "type": "hero", "eyebrow": "v2", "title": "Migration Guide",
25
- "meta": [{ "k": "Status", "v": "Draft" }, { "k": "Owner", "v": "platform" }] },
26
- { "type": "tldr", "markdown": "**Summary:** Update one import path and bump the SDK." },
27
- { "type": "section", "title": "What Changed", "children": [
28
- { "type": "prose", "markdown": "The `auth` module is now a standalone package." },
29
- { "type": "callout", "variant": "warn", "markdown": "Change `sdk/auth` imports before upgrading." }
30
- ]},
31
- { "type": "risk_table", "rows": [
32
- { "risk": "Missed imports", "likelihood": "medium", "impact": "high", "mitigation": "Run codemods." }
33
- ]},
34
- { "type": "timeline", "items": [
35
- { "label": "Phase 1", "text": "Audit existing imports", "date": "2026-06-01" },
36
- { "label": "Phase 2", "text": "Run migration script" }
37
- ]}
38
- ]}
23
+ {
24
+ "title": "Migration Guide",
25
+ "kind": "plan",
26
+ "blocks": [
27
+ {
28
+ "type": "hero",
29
+ "eyebrow": "v2",
30
+ "title": "Migration Guide",
31
+ "meta": [
32
+ { "k": "Status", "v": "Draft" },
33
+ { "k": "Owner", "v": "platform" }
34
+ ]
35
+ },
36
+ { "type": "tldr", "markdown": "**Summary:** Update one import path and bump the SDK." },
37
+ {
38
+ "type": "section",
39
+ "title": "What Changed",
40
+ "children": [
41
+ { "type": "prose", "markdown": "The `auth` module is now a standalone package." },
42
+ {
43
+ "type": "callout",
44
+ "variant": "warn",
45
+ "markdown": "Change `sdk/auth` imports before upgrading."
46
+ }
47
+ ]
48
+ },
49
+ {
50
+ "type": "risk_table",
51
+ "rows": [
52
+ {
53
+ "risk": "Missed imports",
54
+ "likelihood": "medium",
55
+ "impact": "high",
56
+ "mitigation": "Run codemods."
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "type": "timeline",
62
+ "items": [
63
+ { "label": "Phase 1", "text": "Audit existing imports", "date": "2026-06-01" },
64
+ { "label": "Phase 2", "text": "Run migration script" }
65
+ ]
66
+ }
67
+ ]
68
+ }
39
69
  ```
40
70
 
41
71
  ## Quick block reference
@@ -17,6 +17,7 @@ import { meta as pillRowMeta } from "./renderers/pill-row.ts";
17
17
  import { meta as dividerMeta } from "./renderers/divider.ts";
18
18
  import { meta as diagramMeta } from "./renderers/diagram.ts";
19
19
  import { meta as rawHtmlMeta } from "./renderers/raw-html.ts";
20
+ import { meta as diffMeta } from "./renderers/diff.ts";
20
21
 
21
22
  export const blockCatalog: Record<Block["type"], BlockMeta> = {
22
23
  hero: heroMeta,
@@ -34,6 +35,7 @@ export const blockCatalog: Record<Block["type"], BlockMeta> = {
34
35
  divider: dividerMeta,
35
36
  diagram: diagramMeta,
36
37
  raw_html: rawHtmlMeta,
38
+ diff: diffMeta,
37
39
  };
38
40
 
39
41
  export const blockTypes = Object.keys(blockCatalog) as Array<Block["type"]>;