Fix JSON babel config error reporting

This commit is contained in:
Michael Shilman 2019-06-17 10:39:20 +08:00
parent 142321d69b
commit 7aef767697

View File

@ -41,7 +41,7 @@ function loadFromPath(babelConfigPath) {
We tried both loading as JS & JSON, neither worked.
Maybe there's a syntax error in the file?`);
logger.error(`=> From JS loading we got: ${error.js.message}`);
logger.error(`=> From JSON loading we got: ${error.js.message}`);
logger.error(`=> From JSON loading we got: ${error.json && error.json.message}`);
throw error.js;
}