aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/lib/AsyncDependencyToInitialChunkWarning.js
blob: b917b4f602b73d75e6ee1bf2166bff4107b6acfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Sean Larkin @thelarkinn
*/
"use strict";

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

module.exports = class AsyncDependencyToInitialChunkWarning extends WebpackError {
	constructor(chunkName, module, loc) {
		super();

		this.name = "AsyncDependencyToInitialChunkWarning";
		this.message = `It's not allowed to load an initial chunk on demand. The chunk name "${chunkName}" is already used by an entrypoint.`;
		this.module = module;
		this.origin = module;
		this.originLoc = loc;

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