chore: remove wrongly placed type casts

This commit is contained in:
Evan You
2021-09-02 14:18:52 -04:00
parent bacb2012ac
commit fb43aab117
2 changed files with 4 additions and 4 deletions

View File

@@ -220,7 +220,7 @@ async function publishPackage(pkgName, version, runIfNotDry) {
}
)
console.log(chalk.green(`Successfully published ${pkgName}@${version}`))
} catch (e: any) {
} catch (e) {
if (e.stderr.match(/previously published/)) {
console.log(chalk.red(`Skipping already published: ${pkgName}`))
} else {