Merge pull request #2 from jlipps/master

fix: log errors rather than allowing unhandled rejections
This commit is contained in:
Mikeal Rogers 2019-08-27 11:55:00 -07:00 committed by GitHub
commit 06e153a49b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)