import { sanityCheckAll } from "../action/update-all"; export async function main() { try { const [errors, warnings] = await sanityCheckAll(); // warnings ignored process.exit(errors.length); } catch(err) { console.error(err); process.exit(1); } } main();