Skip to content
Snippets Groups Projects
Commit e715e5f6 authored by cilefen's avatar cilefen
Browse files

Issue #2885595 by droplet: Log JavaScript transpile errors instead of crashing the watcher process

parent d4f4b3d1
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
const chalk = require('chalk');
const log = require('./log');
const babel = require('babel-core'); const babel = require('babel-core');
module.exports = (filePath, callback) => { module.exports = (filePath, callback) => {
...@@ -18,9 +20,12 @@ module.exports = (filePath, callback) => { ...@@ -18,9 +20,12 @@ module.exports = (filePath, callback) => {
}, },
(err, result) => { (err, result) => {
if (err) { if (err) {
throw new Error(err); log(chalk.red(err));
process.exitCode = 1;
}
else {
callback(result.code);
} }
callback(result.code);
} }
); );
} };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment