We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aca6a7d commit dc72361Copy full SHA for dc72361
lib/index.js
@@ -156,7 +156,7 @@ class BundleTrackerPlugin {
156
const error = findError(stats.compilation);
157
this._writeOutput(compiler, {
158
status: 'error',
159
- error: error?.name ? error.name : 'unknown-error',
+ error: error?.name ?? 'unknown-error',
160
message: stripAnsi(error['message']),
161
});
162
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "webpack-bundle-tracker",
3
- "version": "3.1.1",
+ "version": "3.2.0",
4
"description": "Spits out some stats about webpack compilation process to a file",
5
"keywords": [
6
"bundle",
0 commit comments