?iť?

Your IP : 3.15.26.135


Current Path : /home/scgforma/www/cloud/apps/logreader/webpack/utils/
Upload File :
Current File : /home/scgforma/www/cloud/apps/logreader/webpack/utils/notifyStats.js

function notifyError(error) {
  // BELLs when something goes wrong!
  console.log("\x07" + error);
}

function notifyWarning(warning) {
  console.log(warning);
}

module.exports = function notifyStats(stats) {
  var json = stats.toJson();
  if (json.errors.length > 0) {
    json.errors.forEach(notifyError);
  } else if (json.warnings.length > 0) {
    json.warnings.forEach(notifyWarning);
  } else {
    console.log(stats.toString({
      chunks: false,
      colors: true
    }));
  }
};