0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

Avoid displaying "prettify pipeline error" if there is no error (#4551)

This commit is contained in:
divdavem 2024-03-22 09:37:54 +01:00 committed by GitHub
parent 9e3085d107
commit 9db15542dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,5 @@
---
'@verdaccio/logger-prettify': patch
---
Avoid displaying "prettify pipeline error" if there is no error

View file

@ -110,8 +110,10 @@ export default function (opts) {
});
pipeline(source, stream, destination, (err) => {
// eslint-disable-next-line no-console
console.error('prettify pipeline error ', err);
if (err) {
// eslint-disable-next-line no-console
console.error('prettify pipeline error ', err);
}
});
return stream;
});