Sha256: 065383dbf43bae7d6ed3407d041a22c578dcac5971acbaea0888a673eb7e29e5
Contents?: true
Size: 841 Bytes
Versions: 10
Compression:
Stored size: 841 Bytes
Contents
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Sean Larkin @thelarkinn */ "use strict"; const WebpackError = require("../WebpackError"); const SizeFormatHelpers = require("../SizeFormatHelpers"); module.exports = class AssetsOverSizeLimitWarning extends WebpackError { constructor(assetsOverSizeLimit, assetLimit) { super(); this.name = "AssetsOverSizeLimitWarning"; this.assets = assetsOverSizeLimit; const assetLists = this.assets.map(asset => `\n ${asset.name} (${SizeFormatHelpers.formatSize(asset.size)})`).join(""); this.message = `asset size limit: The following asset(s) exceed the recommended size limit (${SizeFormatHelpers.formatSize(assetLimit)}). This can impact web performance. Assets: ${assetLists}`; Error.captureStackTrace(this, this.constructor); } };
Version data entries
10 entries across 6 versions & 3 rubygems