Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 22, 2023
1 parent 061d286 commit 8231f7f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tasks/unit/log_process_errors.js
Expand Up @@ -9,7 +9,12 @@ const loadLogProcessErrors = () => {
}

logProcessErrors({
onError: (error) => {
onError: (error, event) => {
// TODO: remove once this is fixed: https://github.com/release-it/release-it/issues/1051
if (event === 'warning' && error.message.includes('punycode')) {
return
}

throw error
},
})
Expand Down

0 comments on commit 8231f7f

Please sign in to comment.