/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.107.1
declarations/plugins/ProgressPlugin.d.ts
68 строк
2 KB
hai-x
feat: add progressBar for ProgressPlugin (#20853)
07 май 2026, 16:46
Не верифицирован
07 май 2026, 16:46
5d1f28f
Код
Авторство
О чём код?
/* * This file was automatically generated. * DO NOT MODIFY BY HAND. * Run `yarn fix:special` to update */ export type ProgressPluginArgument = ProgressPluginOptions | HandlerFunction; /** * Function that executes for every progress step. */ export type HandlerFunction = import("../../lib/ProgressPlugin").HandlerFn; /** * Options object for the ProgressPlugin. */ export interface ProgressPluginOptions { /** * Show active modules count and one active module in progress message. */ activeModules?: boolean; /** * Show dependencies count in progress message. */ dependencies?: boolean; /** * Minimum dependencies count to start with. For better progress calculation. Default: 10000. */ dependenciesCount?: number; /** * Show entries count in progress message. */ entries?: boolean; /** * Function that executes for every progress step. */ handler?: HandlerFunction; /** * Show modules count in progress message. */ modules?: boolean; /** * Minimum modules count to start with. For better progress calculation. Default: 5000. */ modulesCount?: number; /** * Collect percent algorithm. By default it calculates by a median from modules, entries and dependencies percent. */ percentBy?: "entries" | "modules" | "dependencies" | null; /** * Collect profile data for progress steps. Default: false. */ profile?: true | false | null; /** * Generate progress bar. Default: false. */ progressBar?: | boolean | { /** * Color used for the filled portion of the bar. */ color?: string; /** * Name shown before the progress bar. */ name?: string; }; }