Avoid logging an object on compilation errors

In certain configurations Storybook might log the whole Webpack
build object when warnings or errors are thrown. This was caused
by a `logger.error` call inside the `index.js` catch. This fixes by logging
the error only when it's an instance of an error.
This commit is contained in:
Derek W. Stavis 2017-10-24 11:27:59 -02:00 committed by GitHub
parent 6bf8ce53f9
commit d67d2c7f69

View File

@ -157,4 +157,8 @@ Promise.all([webpackValid, serverListening])
process.exit(0);
}
})
.catch(error => logger.error(error));
.catch(error => {
if (error instanceof Error) {
logger.error(error);
}
});