/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/errors/BuildCycleError.js
30 строк
679 B
Alexander Akait
refactor: move errors and warnings into own directory (#20867)
24 апр 2026, 17:18
Не верифицирован
24 апр 2026, 17:18
1d9d029
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const WebpackError = require("./WebpackError"); /** @typedef {import("../Module")} Module */ class BuildCycleError extends WebpackError { /** * Creates an instance of BuildCycleError. * @param {Module} module the module starting the cycle */ constructor(module) { super( "There is a circular build dependency, which makes it impossible to create this module" ); /** @type {string} */ this.name = "BuildCycleError"; /** @type {Module} */ this.module = module; } } /** @type {typeof BuildCycleError} */ module.exports = BuildCycleError;