A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
55
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: updated type guard to allow textContent to be null

Steve e081f01b b8d44224

+1 -1
+1 -1
packages/cli/src/lib/atproto.ts
··· 25 25 typeof v.title === "string" && 26 26 typeof v.site === "string" && 27 27 typeof v.path === "string" && 28 - typeof v.textContent === "string" && 28 + (v.textContent === undefined || typeof v.textContent === "string") && 29 29 typeof v.publishedAt === "string" && 30 30 (v.updatedAt === undefined || typeof v.updatedAt === "string") 31 31 );