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

Configure Feed

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

at main 9 lines 199 B view raw
1import { cancel, isCancel } from "@clack/prompts"; 2 3export function exitOnCancel<T>(value: T | symbol): T { 4 if (isCancel(value)) { 5 cancel("Cancelled"); 6 process.exit(0); 7 } 8 return value as T; 9}