formatWebpackMessages.js 4.2 KB
Newer Older
1
2
3
4
5
6
7
8
9
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */

10
11
'use strict';

12
13
14
// WARNING: this code is untranspiled and is used in browser too.
// Please make sure any changes are in ES5 or contribute a Babel compile step.

15
// Some custom utilities to prettify Webpack output.
16
17
18
// This is quite hacky and hopefully won't be needed when Webpack fixes this.
// https://github.com/webpack/webpack/issues/2878

19
var chalk = require('chalk');
20
var friendlySyntaxErrorLabel = 'Syntax error:';
21

22
23
24
function isLikelyASyntaxError(message) {
  return message.indexOf(friendlySyntaxErrorLabel) !== -1;
}
25
26

// Cleans up webpack error messages.
27
function formatMessage(message, isError) {
28
29
  var lines = message.split('\n');

30
31
32
33
34
  if (lines.length > 2 && lines[1] === '') {
    // Remove extra newline.
    lines.splice(1, 1);
  }

35
36
37
38
39
40
41
42
43
  // Remove webpack-specific loader notation from filename.
  // Before:
  // ./~/css-loader!./~/postcss-loader!./src/App.css
  // After:
  // ./src/App.css
  if (lines[0].lastIndexOf('!') !== -1) {
    lines[0] = lines[0].substr(lines[0].lastIndexOf('!') + 1);
  }

44
45
46
47
48
49
50
51
52
  lines = lines.filter(function(line) {
    // Webpack adds a list of entry points to warning messages:
    //  @ ./src/index.js
    //  @ multi react-scripts/~/react-dev-utils/webpackHotDevClient.js ...
    // It is misleading (and unrelated to the warnings) so we clean it up.
    // It is only useful for syntax errors but we have beautiful frames for them.
    return line.indexOf(' @ ') !== 0;
  });

53
54
55
56
57
58
  // line #0 is filename
  // line #1 is the main error message
  if (!lines[0] || !lines[1]) {
    return lines.join('\n');
  }

59
60
61
62
63
  // Cleans up verbose "module not found" messages for files and packages.
  if (lines[1].indexOf('Module not found: ') === 0) {
    lines = [
      lines[0],
      // Clean up message because "Module not found: " is descriptive enough.
64
65
66
67
68
      lines[1]
        .replace("Cannot resolve 'file' or 'directory' ", '')
        .replace('Cannot resolve module ', '')
        .replace('Error: ', ''),
    ];
69
70
71
72
73
  }

  // Cleans up syntax error messages.
  if (lines[1].indexOf('Module build failed: ') === 0) {
    lines[1] = lines[1].replace(
74
75
      'Module build failed: SyntaxError:',
      friendlySyntaxErrorLabel
76
77
78
    );
  }

79
80
81
82
83
84
85
86
87
  // Clean up export errors.
  // TODO: we should really send a PR to Webpack for this.
  var exportError = /\s*(.+?)\s*(")?export '(.+?)' was not found in '(.+?)'/;
  if (lines[1].match(exportError)) {
    lines[1] = lines[1].replace(
      exportError,
      "$1 '$4' does not contain an export named '$3'."
    );
  }
88

89
  // Prepend filename with an explanation.
90
  lines[0] = chalk.underline(lines[0]) +
91
92
    (isError ? ' contains errors.' : ' contains warnings.');

93
94
  // Reassemble the message.
  message = lines.join('\n');
95
96
97
98
  // Internal stacks are generally useless so we strip them... with the
  // exception of stacks containing `webpack:` because they're normally
  // from user code generated by WebPack. For more information see
  // https://github.com/facebookincubator/create-react-app/pull/1050
99
  message = message.replace(
100
101
    /^\s*at\s((?!webpack:).)*:\d+:\d+[\s\)]*(\n|$)/gm,
    ''
102
103
  ); // at ... ...:x:y

104
  return message.trim();
105
106
}

107
108
function formatWebpackMessages(json) {
  var formattedErrors = json.errors.map(function(message) {
109
    return formatMessage(message, true);
110
111
  });
  var formattedWarnings = json.warnings.map(function(message) {
112
    return formatMessage(message, false);
113
  });
114
115
  var result = {
    errors: formattedErrors,
116
    warnings: formattedWarnings,
117
118
119
120
121
122
123
  };
  if (result.errors.some(isLikelyASyntaxError)) {
    // If there are any syntax errors, show just them.
    // This prevents a confusing ESLint parsing error
    // preceding a much more useful Babel syntax error.
    result.errors = result.errors.filter(isLikelyASyntaxError);
  }
Dan Abramov's avatar
Dan Abramov committed
124
125
126
127
128
  // Only keep the first error. Others are often indicative
  // of the same problem, but confuse the reader with noise.
  if (result.errors.length > 1) {
    result.errors.length = 1;
  }
129
130
131
132
  return result;
}

module.exports = formatWebpackMessages;