Skip to content

Commit dc72361

Browse files
committed
Merge branch 'master' into remove-lodash-optimizations
1 parent aca6a7d commit dc72361

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class BundleTrackerPlugin {
156156
const error = findError(stats.compilation);
157157
this._writeOutput(compiler, {
158158
status: 'error',
159-
error: error?.name ? error.name : 'unknown-error',
159+
error: error?.name ?? 'unknown-error',
160160
message: stripAnsi(error['message']),
161161
});
162162

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack-bundle-tracker",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"description": "Spits out some stats about webpack compilation process to a file",
55
"keywords": [
66
"bundle",

0 commit comments

Comments
 (0)