/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.107.1
lib/PlatformPlugin.js
42 строки
1015 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 Authors Ivan Kopeykin @vankop */ "use strict"; /** @typedef {import("./Compiler")} Compiler */ /** @typedef {import("./config/target").PlatformTargetProperties} PlatformTargetProperties */ const PLUGIN_NAME = "PlatformPlugin"; /** * Should be used only for "target === false" or * when you want to overwrite platform target properties */ class PlatformPlugin { /** * Creates an instance of PlatformPlugin. * @param {Partial<PlatformTargetProperties>} platform target properties */ constructor(platform) { /** @type {Partial<PlatformTargetProperties>} */ this.platform = platform; } /** * Applies the plugin by registering its hooks on the compiler. * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { compiler.hooks.environment.tap(PLUGIN_NAME, () => { compiler.platform = { ...compiler.platform, ...this.platform }; }); } } module.exports = PlatformPlugin;