fix: log errors rather than allowing unhandled rejections

This commit is contained in:
Jonathan Lipps 2019-08-27 11:38:03 -07:00
parent e085888314
commit b81a3ab8a9
1 changed files with 1 additions and 1 deletions

View File

@ -52,4 +52,4 @@ const run = async () => {
process.stdout.write(execSync(`npm publish --access=public`))
process.stdout.write(execSync(`git checkout package.json`))
}
run()
run().catch(console.error)