Sha256: f067aed44f1a345974911620068d2c69ff9f8c056ab8ec8aecf1e07cf89eaf38

Contents?: true

Size: 534 Bytes

Versions: 11

Compression:

Stored size: 534 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const WebpackError = require("./WebpackError");

class ChunkRenderError extends WebpackError {
	constructor(chunk, file, error) {
		super();

		this.name = "ChunkRenderError";
		this.error = error;
		this.message = error.message;
		this.details = error.stack;
		this.file = file;
		this.chunk = chunk;

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

module.exports = ChunkRenderError;

Version data entries

11 entries across 7 versions & 4 rubygems

Version Path
ilog-0.4.1 node_modules/webpack/lib/ChunkRenderError.js
ilog-0.4.0 node_modules/webpack/lib/ChunkRenderError.js
ilog-0.3.3 node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.3 spec/dummy/node_modules/@rails/webpacker/node_modules/webpack/node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.3 spec/dummy/node_modules/@rails/webpacker/node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.3 spec/dummy/node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.2 spec/dummy/node_modules/@rails/webpacker/node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.2 spec/dummy/node_modules/webpack/lib/ChunkRenderError.js
optimacms-0.4.2 spec/dummy/node_modules/@rails/webpacker/node_modules/webpack/node_modules/webpack/lib/ChunkRenderError.js
cortex-0.1.3 spec/dummy/node_modules/webpack/lib/ChunkRenderError.js
dragonfly_puppeteer-0.1.0 node_modules/webpack/lib/ChunkRenderError.js