Sha256: 03a5fe54634643dc80e73514cd0138c17dc19c24386822b1e1279ca0183232bd

Contents?: true

Size: 968 Bytes

Versions: 28

Compression:

Stored size: 968 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 EntrypointsOverSizeLimitWarning extends WebpackError {
	constructor(entrypoints, entrypointLimit) {
		const entrypointList = entrypoints
			.map(
				entrypoint =>
					`\n  ${entrypoint.name} (${SizeFormatHelpers.formatSize(
						entrypoint.size
					)})\n${entrypoint.files.map(asset => `      ${asset}`).join("\n")}`
			)
			.join("");
		super(`entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (${SizeFormatHelpers.formatSize(
			entrypointLimit
		)}). This can impact web performance.
Entrypoints:${entrypointList}\n`);

		this.name = "EntrypointsOverSizeLimitWarning";
		this.entrypoints = entrypoints;

		Error.captureStackTrace(this, this.constructor);
	}
};

Version data entries

28 entries across 27 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
jester-data-8.0.0 node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js