mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-28 17:35:42 +08:00
Change console.log for errors and warnings (#1375)
Array.forEach is passed the following parameters:
currentValue
The current element being processed in the array.
index
The index of the current element being processed in the array.
array
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
console.log takes multiple arguments. We only want to print the first one, the actually message.
This commit is contained in:
committed by
Dan Abramov
parent
d29fb006c0
commit
3f6937c956
@@ -133,12 +133,12 @@ compiler.plugin('done', function(stats) {
|
||||
}
|
||||
if (messages.errors.length) {
|
||||
console.log('Failed to compile.');
|
||||
messages.errors.forEach(console.log);
|
||||
messages.errors.forEach(e => console.log(e));
|
||||
return;
|
||||
}
|
||||
if (messages.warnings.length) {
|
||||
console.log('Compiled with warnings.');
|
||||
messages.warnings.forEach(console.log);
|
||||
messages.warnings.forEach(w => console.log(w));
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user