/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.107.0
lib/cache/AddBuildDependenciesPlugin.js
33 строки
839 B
Aviv Keller
refactor: add basic descriptions (#20787)
10 апр 2026, 18:52
Не верифицирован
10 апр 2026, 18:52
16857f0
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; /** @typedef {import("../Compiler")} Compiler */ const PLUGIN_NAME = "AddBuildDependenciesPlugin"; class AddBuildDependenciesPlugin { /** * Creates an instance of AddBuildDependenciesPlugin. * @param {Iterable<string>} buildDependencies list of build dependencies */ constructor(buildDependencies) { this.buildDependencies = new Set(buildDependencies); } /** * Applies the plugin by registering its hooks on the compiler. * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => { compilation.buildDependencies.addAll(this.buildDependencies); }); } } module.exports = AddBuildDependenciesPlugin;