import { PullAndPush } from './core/pullAndPush' async function main() { await new PullAndPush(true, true).run() } main().catch((error) => { console.error(error); process.exitCode = 1; })