Files
dns-server/node_modules/webpack/lib/AsyncDependencyToInitialChunkError.js
T
Alex Yang f627244b8f 更新
2026-03-30 01:04:46 +08:00

35 lines
997 B
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Sean Larkin @thelarkinn
*/
"use strict";
const WebpackError = require("./WebpackError");
/** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */
/** @typedef {import("./Module")} Module */
class AsyncDependencyToInitialChunkError extends WebpackError {
/**
* Creates an instance of AsyncDependencyToInitialChunkError.
* @param {string} chunkName Name of Chunk
* @param {Module} module module tied to dependency
* @param {DependencyLocation} loc location of dependency
*/
constructor(chunkName, module, loc) {
super(
`It's not allowed to load an initial chunk on demand. The chunk name "${chunkName}" is already used by an entrypoint.`
);
/** @type {string} */
this.name = "AsyncDependencyToInitialChunkError";
/** @type {Module} */
this.module = module;
/** @type {DependencyLocation} */
this.loc = loc;
}
}
module.exports = AsyncDependencyToInitialChunkError;