A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
at v0.2.0 9 lines 206 B view raw
1import { isCancel, cancel } 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}