🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

html-rspack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-rspack-plugin - npm Package Compare versions

Comparing version
6.1.5
to
6.1.6
+7
-4
lib/errors.js
// @ts-nocheck
"use strict";
'use strict';

@@ -7,3 +7,3 @@ module.exports = function (err) {

toHtml: function () {
return "[html-rspack-plugin]:\n<pre>\n" + this.toString() + "</pre>";
return '[html-rspack-plugin]:\n<pre>\n' + this.toString() + '</pre>';
},

@@ -15,7 +15,10 @@ toJsonHtml: function () {

if (err.message) {
return `[html-rspack-plugin]: ` + err.message;
return (
`[html-rspack-plugin]: ` +
(err.stack || `${err.name}: ${err.message}`)
);
}
return err;
}
},
};
};
{
"name": "html-rspack-plugin",
"version": "6.1.5",
"version": "6.1.6",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Simplifies creation of HTML files to serve your Rspack bundles",