123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616 |
- /*
- MIT License http://www.opensource.org/licenses/mit-license.php
- Author Tobias Koppers @sokra
- */
- "use strict";
- const util = require("util");
- const { WEBPACK_MODULE_TYPE_RUNTIME } = require("../ModuleTypeConstants");
- const ModuleDependency = require("../dependencies/ModuleDependency");
- const formatLocation = require("../formatLocation");
- const { LogType } = require("../logging/Logger");
- const AggressiveSplittingPlugin = require("../optimize/AggressiveSplittingPlugin");
- const SizeLimitsPlugin = require("../performance/SizeLimitsPlugin");
- const { countIterable } = require("../util/IterableHelpers");
- const {
- compareLocations,
- compareChunksById,
- compareNumbers,
- compareIds,
- concatComparators,
- compareSelect,
- compareModulesByIdentifier
- } = require("../util/comparators");
- const { makePathsRelative, parseResource } = require("../util/identifier");
- /** @typedef {import("webpack-sources").Source} Source */
- /** @typedef {import("../Chunk")} Chunk */
- /** @typedef {import("../Chunk").ChunkId} ChunkId */
- /** @typedef {import("../ChunkGraph").ModuleId} ModuleId */
- /** @typedef {import("../ChunkGroup")} ChunkGroup */
- /** @typedef {import("../ChunkGroup").OriginRecord} OriginRecord */
- /** @typedef {import("../Compilation")} Compilation */
- /** @typedef {import("../Compilation").Asset} Asset */
- /** @typedef {import("../Compilation").AssetInfo} AssetInfo */
- /** @typedef {import("../Compilation").KnownNormalizedStatsOptions} KnownNormalizedStatsOptions */
- /** @typedef {import("../Compilation").NormalizedStatsOptions} NormalizedStatsOptions */
- /** @typedef {import("../Compiler")} Compiler */
- /** @typedef {import("../Dependency")} Dependency */
- /** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
- /** @typedef {import("../Module")} Module */
- /** @typedef {import("../Module").BuildInfo} BuildInfo */
- /** @typedef {import("../ModuleGraphConnection")} ModuleGraphConnection */
- /** @typedef {import("../ModuleProfile")} ModuleProfile */
- /** @typedef {import("../RequestShortener")} RequestShortener */
- /** @typedef {import("../TemplatedPathPlugin").TemplatePath} TemplatePath */
- /** @typedef {import("../WebpackError")} WebpackError */
- /** @typedef {import("../util/runtime").RuntimeSpec} RuntimeSpec */
- /** @typedef {import("./StatsFactory")} StatsFactory */
- /** @typedef {import("./StatsFactory").StatsFactoryContext} StatsFactoryContext */
- /**
- * @template T
- * @typedef {import("../util/comparators").Comparator<T>} Comparator<T>
- */
- /**
- * @template T, R
- * @typedef {import("../util/smartGrouping").GroupConfig<T, R>} GroupConfig
- */
- /** @typedef {KnownStatsCompilation & Record<string, EXPECTED_ANY>} StatsCompilation */
- /**
- * @typedef {object} KnownStatsCompilation
- * @property {any=} env
- * @property {string=} name
- * @property {string=} hash
- * @property {string=} version
- * @property {number=} time
- * @property {number=} builtAt
- * @property {boolean=} needAdditionalPass
- * @property {string=} publicPath
- * @property {string=} outputPath
- * @property {Record<string, string[]>=} assetsByChunkName
- * @property {StatsAsset[]=} assets
- * @property {number=} filteredAssets
- * @property {StatsChunk[]=} chunks
- * @property {StatsModule[]=} modules
- * @property {number=} filteredModules
- * @property {Record<string, StatsChunkGroup>=} entrypoints
- * @property {Record<string, StatsChunkGroup>=} namedChunkGroups
- * @property {StatsError[]=} errors
- * @property {number=} errorsCount
- * @property {StatsError[]=} warnings
- * @property {number=} warningsCount
- * @property {StatsCompilation[]=} children
- * @property {Record<string, StatsLogging>=} logging
- */
- /** @typedef {KnownStatsLogging & Record<string, EXPECTED_ANY>} StatsLogging */
- /**
- * @typedef {object} KnownStatsLogging
- * @property {StatsLoggingEntry[]} entries
- * @property {number} filteredEntries
- * @property {boolean} debug
- */
- /** @typedef {KnownStatsLoggingEntry & Record<string, EXPECTED_ANY>} StatsLoggingEntry */
- /**
- * @typedef {object} KnownStatsLoggingEntry
- * @property {string} type
- * @property {string=} message
- * @property {string[]=} trace
- * @property {StatsLoggingEntry[]=} children
- * @property {EXPECTED_ANY[]=} args
- * @property {number=} time
- */
- /** @typedef {KnownStatsAsset & Record<string, EXPECTED_ANY>} StatsAsset */
- /**
- * @typedef {object} KnownStatsAsset
- * @property {string} type
- * @property {string} name
- * @property {AssetInfo} info
- * @property {number} size
- * @property {boolean} emitted
- * @property {boolean} comparedForEmit
- * @property {boolean} cached
- * @property {StatsAsset[]=} related
- * @property {(string|number)[]=} chunkNames
- * @property {(string|number)[]=} chunkIdHints
- * @property {(string|number)[]=} chunks
- * @property {(string|number)[]=} auxiliaryChunkNames
- * @property {(string|number)[]=} auxiliaryChunks
- * @property {(string|number)[]=} auxiliaryChunkIdHints
- * @property {number=} filteredRelated
- * @property {boolean=} isOverSizeLimit
- */
- /** @typedef {KnownStatsChunkGroup & Record<string, EXPECTED_ANY>} StatsChunkGroup */
- /**
- * @typedef {object} KnownStatsChunkGroup
- * @property {(string | null)=} name
- * @property {(string | number)[]=} chunks
- * @property {({ name: string, size?: number })[]=} assets
- * @property {number=} filteredAssets
- * @property {number=} assetsSize
- * @property {({ name: string, size?: number })[]=} auxiliaryAssets
- * @property {number=} filteredAuxiliaryAssets
- * @property {number=} auxiliaryAssetsSize
- * @property {{ [x: string]: StatsChunkGroup[] }=} children
- * @property {{ [x: string]: string[] }=} childAssets
- * @property {boolean=} isOverSizeLimit
- */
- /** @typedef {KnownStatsModule & Record<string, EXPECTED_ANY>} StatsModule */
- /**
- * @typedef {object} KnownStatsModule
- * @property {string=} type
- * @property {string=} moduleType
- * @property {(string | null)=} layer
- * @property {string=} identifier
- * @property {string=} name
- * @property {(string | null)=} nameForCondition
- * @property {number=} index
- * @property {number=} preOrderIndex
- * @property {number=} index2
- * @property {number=} postOrderIndex
- * @property {number=} size
- * @property {{ [x: string]: number }=} sizes
- * @property {boolean=} cacheable
- * @property {boolean=} built
- * @property {boolean=} codeGenerated
- * @property {boolean=} buildTimeExecuted
- * @property {boolean=} cached
- * @property {boolean=} optional
- * @property {boolean=} orphan
- * @property {string | number=} id
- * @property {string | number | null=} issuerId
- * @property {(string | number)[]=} chunks
- * @property {(string | number)[]=} assets
- * @property {boolean=} dependent
- * @property {(string | null)=} issuer
- * @property {(string | null)=} issuerName
- * @property {StatsModuleIssuer[]=} issuerPath
- * @property {boolean=} failed
- * @property {number=} errors
- * @property {number=} warnings
- * @property {StatsProfile=} profile
- * @property {StatsModuleReason[]=} reasons
- * @property {(boolean | null | string[])=} usedExports
- * @property {(string[] | null)=} providedExports
- * @property {string[]=} optimizationBailout
- * @property {(number | null)=} depth
- * @property {StatsModule[]=} modules
- * @property {number=} filteredModules
- * @property {ReturnType<Source["source"]>=} source
- */
- /** @typedef {KnownStatsProfile & Record<string, EXPECTED_ANY>} StatsProfile */
- /**
- * @typedef {object} KnownStatsProfile
- * @property {number} total
- * @property {number} resolving
- * @property {number} restoring
- * @property {number} building
- * @property {number} integration
- * @property {number} storing
- * @property {number} additionalResolving
- * @property {number} additionalIntegration
- * @property {number} factory
- * @property {number} dependencies
- */
- /** @typedef {KnownStatsModuleIssuer & Record<string, EXPECTED_ANY>} StatsModuleIssuer */
- /**
- * @typedef {object} KnownStatsModuleIssuer
- * @property {string} identifier
- * @property {string} name
- * @property {(string|number)=} id
- * @property {StatsProfile} profile
- */
- /** @typedef {KnownStatsModuleReason & Record<string, EXPECTED_ANY>} StatsModuleReason */
- /**
- * @typedef {object} KnownStatsModuleReason
- * @property {string | null} moduleIdentifier
- * @property {string | null} module
- * @property {string | null} moduleName
- * @property {string | null} resolvedModuleIdentifier
- * @property {string | null} resolvedModule
- * @property {string | null} type
- * @property {boolean} active
- * @property {string | null} explanation
- * @property {string | null} userRequest
- * @property {(string | null)=} loc
- * @property {(string | number | null)=} moduleId
- * @property {(string | number | null)=} resolvedModuleId
- */
- /** @typedef {KnownStatsChunk & Record<string, EXPECTED_ANY>} StatsChunk */
- /**
- * @typedef {object} KnownStatsChunk
- * @property {boolean} rendered
- * @property {boolean} initial
- * @property {boolean} entry
- * @property {boolean} recorded
- * @property {string=} reason
- * @property {number} size
- * @property {Record<string, number>} sizes
- * @property {string[]} names
- * @property {string[]} idHints
- * @property {string[]=} runtime
- * @property {string[]} files
- * @property {string[]} auxiliaryFiles
- * @property {string} hash
- * @property {Record<string, (string|number)[]>} childrenByOrder
- * @property {(string|number)=} id
- * @property {(string|number)[]=} siblings
- * @property {(string|number)[]=} parents
- * @property {(string|number)[]=} children
- * @property {StatsModule[]=} modules
- * @property {number=} filteredModules
- * @property {StatsChunkOrigin[]=} origins
- */
- /** @typedef {KnownStatsChunkOrigin & Record<string, EXPECTED_ANY>} StatsChunkOrigin */
- /**
- * @typedef {object} KnownStatsChunkOrigin
- * @property {string} module
- * @property {string} moduleIdentifier
- * @property {string} moduleName
- * @property {string} loc
- * @property {string} request
- * @property {(string | number)=} moduleId
- */
- /** @typedef {KnownStatsModuleTraceItem & Record<string, EXPECTED_ANY>} StatsModuleTraceItem */
- /**
- * @typedef {object} KnownStatsModuleTraceItem
- * @property {string=} originIdentifier
- * @property {string=} originName
- * @property {string=} moduleIdentifier
- * @property {string=} moduleName
- * @property {StatsModuleTraceDependency[]=} dependencies
- * @property {(string|number)=} originId
- * @property {(string|number)=} moduleId
- */
- /** @typedef {KnownStatsModuleTraceDependency & Record<string, EXPECTED_ANY>} StatsModuleTraceDependency */
- /**
- * @typedef {object} KnownStatsModuleTraceDependency
- * @property {string=} loc
- */
- /** @typedef {KnownStatsError & Record<string, EXPECTED_ANY>} StatsError */
- /**
- * @typedef {object} KnownStatsError
- * @property {string} message
- * @property {string=} chunkName
- * @property {boolean=} chunkEntry
- * @property {boolean=} chunkInitial
- * @property {string=} file
- * @property {string=} moduleIdentifier
- * @property {string=} moduleName
- * @property {string=} loc
- * @property {ChunkId=} chunkId
- * @property {string|number=} moduleId
- * @property {StatsModuleTraceItem[]=} moduleTrace
- * @property {string=} details
- * @property {string=} stack
- * @property {string=} compilerPath
- */
- /** @typedef {Asset & { type: string, related: PreprocessedAsset[] | undefined }} PreprocessedAsset */
- /**
- * @template T
- * @template O
- * @typedef {Record<string, (object: O, data: T, context: StatsFactoryContext, options: NormalizedStatsOptions, factory: StatsFactory) => void>} ExtractorsByOption
- */
- /**
- * @typedef {object} SimpleExtractors
- * @property {ExtractorsByOption<Compilation, StatsCompilation>} compilation
- * @property {ExtractorsByOption<PreprocessedAsset, StatsAsset>} asset
- * @property {ExtractorsByOption<PreprocessedAsset, StatsAsset>} asset$visible
- * @property {ExtractorsByOption<{ name: string, chunkGroup: ChunkGroup }, StatsChunkGroup>} chunkGroup
- * @property {ExtractorsByOption<Module, StatsModule>} module
- * @property {ExtractorsByOption<Module, StatsModule>} module$visible
- * @property {ExtractorsByOption<Module, StatsModuleIssuer>} moduleIssuer
- * @property {ExtractorsByOption<ModuleProfile, StatsProfile>} profile
- * @property {ExtractorsByOption<ModuleGraphConnection, StatsModuleReason>} moduleReason
- * @property {ExtractorsByOption<Chunk, StatsChunk>} chunk
- * @property {ExtractorsByOption<OriginRecord, StatsChunkOrigin>} chunkOrigin
- * @property {ExtractorsByOption<WebpackError, StatsError>} error
- * @property {ExtractorsByOption<WebpackError, StatsError>} warning
- * @property {ExtractorsByOption<{ origin: Module, module: Module }, StatsModuleTraceItem>} moduleTraceItem
- * @property {ExtractorsByOption<Dependency, StatsModuleTraceDependency>} moduleTraceDependency
- */
- /**
- * @template T
- * @template I
- * @param {Iterable<T>} items items to select from
- * @param {(item: T) => Iterable<I>} selector selector function to select values from item
- * @returns {I[]} array of values
- */
- const uniqueArray = (items, selector) => {
- /** @type {Set<I>} */
- const set = new Set();
- for (const item of items) {
- for (const i of selector(item)) {
- set.add(i);
- }
- }
- return Array.from(set);
- };
- /**
- * @template T
- * @template I
- * @param {Iterable<T>} items items to select from
- * @param {(item: T) => Iterable<I>} selector selector function to select values from item
- * @param {Comparator<I>} comparator comparator function
- * @returns {I[]} array of values
- */
- const uniqueOrderedArray = (items, selector, comparator) =>
- uniqueArray(items, selector).sort(comparator);
- /** @template T @template R @typedef {{ [P in keyof T]: R }} MappedValues<T, R> */
- /**
- * @template {object} T
- * @template {object} R
- * @param {T} obj object to be mapped
- * @param {function(T[keyof T], keyof T): R} fn mapping function
- * @returns {MappedValues<T, R>} mapped object
- */
- const mapObject = (obj, fn) => {
- const newObj = Object.create(null);
- for (const key of Object.keys(obj)) {
- newObj[key] = fn(
- obj[/** @type {keyof T} */ (key)],
- /** @type {keyof T} */ (key)
- );
- }
- return newObj;
- };
- /**
- * @template T
- * @param {Compilation} compilation the compilation
- * @param {(compilation: Compilation, name: string) => T[]} getItems get items
- * @returns {number} total number
- */
- const countWithChildren = (compilation, getItems) => {
- let count = getItems(compilation, "").length;
- for (const child of compilation.children) {
- count += countWithChildren(child, (c, type) =>
- getItems(c, `.children[].compilation${type}`)
- );
- }
- return count;
- };
- /** @type {ExtractorsByOption<WebpackError | string, StatsError>} */
- const EXTRACT_ERROR = {
- _: (object, error, context, { requestShortener }) => {
- // TODO webpack 6 disallow strings in the errors/warnings list
- if (typeof error === "string") {
- object.message = error;
- } else {
- if (error.chunk) {
- object.chunkName =
- /** @type {string | undefined} */
- (error.chunk.name);
- object.chunkEntry = error.chunk.hasRuntime();
- object.chunkInitial = error.chunk.canBeInitial();
- }
- if (error.file) {
- object.file = error.file;
- }
- if (error.module) {
- object.moduleIdentifier = error.module.identifier();
- object.moduleName = error.module.readableIdentifier(requestShortener);
- }
- if (error.loc) {
- object.loc = formatLocation(error.loc);
- }
- object.message = error.message;
- }
- },
- ids: (object, error, { compilation: { chunkGraph } }) => {
- if (typeof error !== "string") {
- if (error.chunk) {
- object.chunkId = /** @type {ChunkId} */ (error.chunk.id);
- }
- if (error.module) {
- object.moduleId =
- /** @type {ModuleId} */
- (chunkGraph.getModuleId(error.module));
- }
- }
- },
- moduleTrace: (object, error, context, options, factory) => {
- if (typeof error !== "string" && error.module) {
- const {
- type,
- compilation: { moduleGraph }
- } = context;
- /** @type {Set<Module>} */
- const visitedModules = new Set();
- const moduleTrace = [];
- let current = error.module;
- while (current) {
- if (visitedModules.has(current)) break; // circular (technically impossible, but how knows)
- visitedModules.add(current);
- const origin = moduleGraph.getIssuer(current);
- if (!origin) break;
- moduleTrace.push({ origin, module: current });
- current = origin;
- }
- object.moduleTrace = factory.create(
- `${type}.moduleTrace`,
- moduleTrace,
- context
- );
- }
- },
- errorDetails: (
- object,
- error,
- { type, compilation, cachedGetErrors, cachedGetWarnings },
- { errorDetails }
- ) => {
- if (
- typeof error !== "string" &&
- (errorDetails === true ||
- (type.endsWith(".error") && cachedGetErrors(compilation).length < 3))
- ) {
- object.details = error.details;
- }
- },
- errorStack: (object, error) => {
- if (typeof error !== "string") {
- object.stack = error.stack;
- }
- }
- };
- /** @type {SimpleExtractors} */
- const SIMPLE_EXTRACTORS = {
- compilation: {
- _: (object, compilation, context, options) => {
- if (!context.makePathsRelative) {
- context.makePathsRelative = makePathsRelative.bindContextCache(
- compilation.compiler.context,
- compilation.compiler.root
- );
- }
- if (!context.cachedGetErrors) {
- const map = new WeakMap();
- context.cachedGetErrors = compilation =>
- map.get(compilation) ||
- // eslint-disable-next-line no-sequences
- (errors => (map.set(compilation, errors), errors))(
- compilation.getErrors()
- );
- }
- if (!context.cachedGetWarnings) {
- const map = new WeakMap();
- context.cachedGetWarnings = compilation =>
- map.get(compilation) ||
- // eslint-disable-next-line no-sequences
- (warnings => (map.set(compilation, warnings), warnings))(
- compilation.getWarnings()
- );
- }
- if (compilation.name) {
- object.name = compilation.name;
- }
- if (compilation.needAdditionalPass) {
- object.needAdditionalPass = true;
- }
- const { logging, loggingDebug, loggingTrace } = options;
- if (logging || (loggingDebug && loggingDebug.length > 0)) {
- const util = require("util");
- object.logging = {};
- let acceptedTypes;
- let collapsedGroups = false;
- switch (logging) {
- case "error":
- acceptedTypes = new Set([LogType.error]);
- break;
- case "warn":
- acceptedTypes = new Set([LogType.error, LogType.warn]);
- break;
- case "info":
- acceptedTypes = new Set([
- LogType.error,
- LogType.warn,
- LogType.info
- ]);
- break;
- case "log":
- acceptedTypes = new Set([
- LogType.error,
- LogType.warn,
- LogType.info,
- LogType.log,
- LogType.group,
- LogType.groupEnd,
- LogType.groupCollapsed,
- LogType.clear
- ]);
- break;
- case "verbose":
- acceptedTypes = new Set([
- LogType.error,
- LogType.warn,
- LogType.info,
- LogType.log,
- LogType.group,
- LogType.groupEnd,
- LogType.groupCollapsed,
- LogType.profile,
- LogType.profileEnd,
- LogType.time,
- LogType.status,
- LogType.clear
- ]);
- collapsedGroups = true;
- break;
- default:
- acceptedTypes = new Set();
- break;
- }
- const cachedMakePathsRelative = makePathsRelative.bindContextCache(
- options.context,
- compilation.compiler.root
- );
- let depthInCollapsedGroup = 0;
- for (const [origin, logEntries] of compilation.logging) {
- const debugMode = loggingDebug.some(fn => fn(origin));
- if (logging === false && !debugMode) continue;
- /** @type {KnownStatsLoggingEntry[]} */
- const groupStack = [];
- /** @type {KnownStatsLoggingEntry[]} */
- const rootList = [];
- let currentList = rootList;
- let processedLogEntries = 0;
- for (const entry of logEntries) {
- let type = entry.type;
- if (!debugMode && !acceptedTypes.has(type)) continue;
- // Expand groups in verbose and debug modes
- if (
- type === LogType.groupCollapsed &&
- (debugMode || collapsedGroups)
- )
- type = LogType.group;
- if (depthInCollapsedGroup === 0) {
- processedLogEntries++;
- }
- if (type === LogType.groupEnd) {
- groupStack.pop();
- currentList =
- groupStack.length > 0
- ? /** @type {KnownStatsLoggingEntry[]} */ (
- groupStack[groupStack.length - 1].children
- )
- : rootList;
- if (depthInCollapsedGroup > 0) depthInCollapsedGroup--;
- continue;
- }
- let message;
- if (entry.type === LogType.time) {
- const [label, first, second] =
- /** @type {[string, number, number]} */
- (entry.args);
- message = `${label}: ${first * 1000 + second / 1000000} ms`;
- } else if (entry.args && entry.args.length > 0) {
- message = util.format(entry.args[0], ...entry.args.slice(1));
- }
- /** @type {KnownStatsLoggingEntry} */
- const newEntry = {
- ...entry,
- type,
- message,
- trace: loggingTrace ? entry.trace : undefined,
- children:
- type === LogType.group || type === LogType.groupCollapsed
- ? []
- : undefined
- };
- currentList.push(newEntry);
- if (newEntry.children) {
- groupStack.push(newEntry);
- currentList = newEntry.children;
- if (depthInCollapsedGroup > 0) {
- depthInCollapsedGroup++;
- } else if (type === LogType.groupCollapsed) {
- depthInCollapsedGroup = 1;
- }
- }
- }
- let name = cachedMakePathsRelative(origin).replace(/\|/g, " ");
- if (name in object.logging) {
- let i = 1;
- while (`${name}#${i}` in object.logging) {
- i++;
- }
- name = `${name}#${i}`;
- }
- object.logging[name] = {
- entries: rootList,
- filteredEntries: logEntries.length - processedLogEntries,
- debug: debugMode
- };
- }
- }
- },
- hash: (object, compilation) => {
- object.hash = /** @type {string} */ (compilation.hash);
- },
- version: object => {
- object.version = require("../../package.json").version;
- },
- env: (object, compilation, context, { _env }) => {
- object.env = _env;
- },
- timings: (object, compilation) => {
- object.time =
- /** @type {number} */ (compilation.endTime) -
- /** @type {number} */ (compilation.startTime);
- },
- builtAt: (object, compilation) => {
- object.builtAt = /** @type {number} */ (compilation.endTime);
- },
- publicPath: (object, compilation) => {
- object.publicPath = compilation.getPath(
- /** @type {TemplatePath} */
- (compilation.outputOptions.publicPath)
- );
- },
- outputPath: (object, compilation) => {
- object.outputPath = /** @type {string} */ (
- compilation.outputOptions.path
- );
- },
- assets: (object, compilation, context, options, factory) => {
- const { type } = context;
- /** @type {Map<string, Chunk[]>} */
- const compilationFileToChunks = new Map();
- /** @type {Map<string, Chunk[]>} */
- const compilationAuxiliaryFileToChunks = new Map();
- for (const chunk of compilation.chunks) {
- for (const file of chunk.files) {
- let array = compilationFileToChunks.get(file);
- if (array === undefined) {
- array = [];
- compilationFileToChunks.set(file, array);
- }
- array.push(chunk);
- }
- for (const file of chunk.auxiliaryFiles) {
- let array = compilationAuxiliaryFileToChunks.get(file);
- if (array === undefined) {
- array = [];
- compilationAuxiliaryFileToChunks.set(file, array);
- }
- array.push(chunk);
- }
- }
- /** @type {Map<string, PreprocessedAsset>} */
- const assetMap = new Map();
- /** @type {Set<PreprocessedAsset>} */
- const assets = new Set();
- for (const asset of compilation.getAssets()) {
- /** @type {PreprocessedAsset} */
- const item = {
- ...asset,
- type: "asset",
- related: undefined
- };
- assets.add(item);
- assetMap.set(asset.name, item);
- }
- for (const item of assetMap.values()) {
- const related = item.info.related;
- if (!related) continue;
- for (const type of Object.keys(related)) {
- const relatedEntry = related[type];
- const deps = Array.isArray(relatedEntry)
- ? relatedEntry
- : [relatedEntry];
- for (const dep of deps) {
- const depItem = assetMap.get(dep);
- if (!depItem) continue;
- assets.delete(depItem);
- depItem.type = type;
- item.related = item.related || [];
- item.related.push(depItem);
- }
- }
- }
- object.assetsByChunkName = {};
- for (const [file, chunks] of compilationFileToChunks) {
- for (const chunk of chunks) {
- const name = chunk.name;
- if (!name) continue;
- if (
- !Object.prototype.hasOwnProperty.call(
- object.assetsByChunkName,
- name
- )
- ) {
- object.assetsByChunkName[name] = [];
- }
- object.assetsByChunkName[name].push(file);
- }
- }
- const groupedAssets = factory.create(
- `${type}.assets`,
- Array.from(assets),
- {
- ...context,
- compilationFileToChunks,
- compilationAuxiliaryFileToChunks
- }
- );
- const limited = spaceLimited(
- groupedAssets,
- /** @type {number} */ (options.assetsSpace)
- );
- object.assets = limited.children;
- object.filteredAssets = limited.filteredChildren;
- },
- chunks: (object, compilation, context, options, factory) => {
- const { type } = context;
- object.chunks = factory.create(
- `${type}.chunks`,
- Array.from(compilation.chunks),
- context
- );
- },
- modules: (object, compilation, context, options, factory) => {
- const { type } = context;
- const array = Array.from(compilation.modules);
- const groupedModules = factory.create(`${type}.modules`, array, context);
- const limited = spaceLimited(groupedModules, options.modulesSpace);
- object.modules = limited.children;
- object.filteredModules = limited.filteredChildren;
- },
- entrypoints: (
- object,
- compilation,
- context,
- { entrypoints, chunkGroups, chunkGroupAuxiliary, chunkGroupChildren },
- factory
- ) => {
- const { type } = context;
- const array = Array.from(compilation.entrypoints, ([key, value]) => ({
- name: key,
- chunkGroup: value
- }));
- if (entrypoints === "auto" && !chunkGroups) {
- if (array.length > 5) return;
- if (
- !chunkGroupChildren &&
- array.every(({ chunkGroup }) => {
- if (chunkGroup.chunks.length !== 1) return false;
- const chunk = chunkGroup.chunks[0];
- return (
- chunk.files.size === 1 &&
- (!chunkGroupAuxiliary || chunk.auxiliaryFiles.size === 0)
- );
- })
- ) {
- return;
- }
- }
- object.entrypoints = factory.create(
- `${type}.entrypoints`,
- array,
- context
- );
- },
- chunkGroups: (object, compilation, context, options, factory) => {
- const { type } = context;
- const array = Array.from(
- compilation.namedChunkGroups,
- ([key, value]) => ({
- name: key,
- chunkGroup: value
- })
- );
- object.namedChunkGroups = factory.create(
- `${type}.namedChunkGroups`,
- array,
- context
- );
- },
- errors: (object, compilation, context, options, factory) => {
- const { type, cachedGetErrors } = context;
- const rawErrors = cachedGetErrors(compilation);
- const factorizedErrors = factory.create(
- `${type}.errors`,
- cachedGetErrors(compilation),
- context
- );
- let filtered = 0;
- if (options.errorDetails === "auto" && rawErrors.length >= 3) {
- filtered = rawErrors
- .map(e => typeof e !== "string" && e.details)
- .filter(Boolean).length;
- }
- if (
- options.errorDetails === true ||
- !Number.isFinite(options.errorsSpace)
- ) {
- object.errors = factorizedErrors;
- if (filtered) object.filteredErrorDetailsCount = filtered;
- return;
- }
- const [errors, filteredBySpace] = errorsSpaceLimit(
- factorizedErrors,
- /** @type {number} */
- (options.errorsSpace)
- );
- object.filteredErrorDetailsCount = filtered + filteredBySpace;
- object.errors = errors;
- },
- errorsCount: (object, compilation, { cachedGetErrors }) => {
- object.errorsCount = countWithChildren(compilation, c =>
- cachedGetErrors(c)
- );
- },
- warnings: (object, compilation, context, options, factory) => {
- const { type, cachedGetWarnings } = context;
- const rawWarnings = factory.create(
- `${type}.warnings`,
- cachedGetWarnings(compilation),
- context
- );
- let filtered = 0;
- if (options.errorDetails === "auto") {
- filtered = cachedGetWarnings(compilation)
- .map(e => typeof e !== "string" && e.details)
- .filter(Boolean).length;
- }
- if (
- options.errorDetails === true ||
- !Number.isFinite(options.warningsSpace)
- ) {
- object.warnings = rawWarnings;
- if (filtered) object.filteredWarningDetailsCount = filtered;
- return;
- }
- const [warnings, filteredBySpace] = errorsSpaceLimit(
- rawWarnings,
- /** @type {number} */
- (options.warningsSpace)
- );
- object.filteredWarningDetailsCount = filtered + filteredBySpace;
- object.warnings = warnings;
- },
- warningsCount: (
- object,
- compilation,
- context,
- { warningsFilter },
- factory
- ) => {
- const { type, cachedGetWarnings } = context;
- object.warningsCount = countWithChildren(compilation, (c, childType) => {
- if (
- !warningsFilter &&
- /** @type {KnownNormalizedStatsOptions["warningsFilter"]} */
- (warningsFilter).length === 0
- )
- return cachedGetWarnings(c);
- return factory
- .create(`${type}${childType}.warnings`, cachedGetWarnings(c), context)
- .filter(
- /**
- * @param {TODO} warning warning
- * @returns {boolean} result
- */
- warning => {
- const warningString = Object.keys(warning)
- .map(
- key =>
- `${warning[/** @type {keyof KnownStatsError} */ (key)]}`
- )
- .join("\n");
- return !warningsFilter.some(filter =>
- filter(warning, warningString)
- );
- }
- );
- });
- },
- children: (object, compilation, context, options, factory) => {
- const { type } = context;
- object.children = factory.create(
- `${type}.children`,
- compilation.children,
- context
- );
- }
- },
- asset: {
- _: (object, asset, context, options, factory) => {
- const { compilation } = context;
- object.type = asset.type;
- object.name = asset.name;
- object.size = asset.source.size();
- object.emitted = compilation.emittedAssets.has(asset.name);
- object.comparedForEmit = compilation.comparedForEmitAssets.has(
- asset.name
- );
- const cached = !object.emitted && !object.comparedForEmit;
- object.cached = cached;
- object.info = asset.info;
- if (!cached || options.cachedAssets) {
- Object.assign(
- object,
- factory.create(`${context.type}$visible`, asset, context)
- );
- }
- }
- },
- asset$visible: {
- _: (
- object,
- asset,
- { compilation, compilationFileToChunks, compilationAuxiliaryFileToChunks }
- ) => {
- const chunks = compilationFileToChunks.get(asset.name) || [];
- const auxiliaryChunks =
- compilationAuxiliaryFileToChunks.get(asset.name) || [];
- object.chunkNames = uniqueOrderedArray(
- chunks,
- c => (c.name ? [c.name] : []),
- compareIds
- );
- object.chunkIdHints = uniqueOrderedArray(
- chunks,
- c => Array.from(c.idNameHints),
- compareIds
- );
- object.auxiliaryChunkNames = uniqueOrderedArray(
- auxiliaryChunks,
- c => (c.name ? [c.name] : []),
- compareIds
- );
- object.auxiliaryChunkIdHints = uniqueOrderedArray(
- auxiliaryChunks,
- c => Array.from(c.idNameHints),
- compareIds
- );
- object.filteredRelated = asset.related ? asset.related.length : undefined;
- },
- relatedAssets: (object, asset, context, options, factory) => {
- const { type } = context;
- object.related = factory.create(
- `${type.slice(0, -8)}.related`,
- asset.related || [],
- context
- );
- object.filteredRelated = asset.related
- ? asset.related.length -
- /** @type {StatsAsset[]} */ (object.related).length
- : undefined;
- },
- ids: (
- object,
- asset,
- { compilationFileToChunks, compilationAuxiliaryFileToChunks }
- ) => {
- const chunks = compilationFileToChunks.get(asset.name) || [];
- const auxiliaryChunks =
- compilationAuxiliaryFileToChunks.get(asset.name) || [];
- object.chunks = uniqueOrderedArray(
- chunks,
- c => /** @type {ChunkId[]} */ (c.ids),
- compareIds
- );
- object.auxiliaryChunks = uniqueOrderedArray(
- auxiliaryChunks,
- c => /** @type {ChunkId[]} */ (c.ids),
- compareIds
- );
- },
- performance: (object, asset) => {
- object.isOverSizeLimit = SizeLimitsPlugin.isOverSizeLimit(asset.source);
- }
- },
- chunkGroup: {
- _: (
- object,
- { name, chunkGroup },
- { compilation, compilation: { moduleGraph, chunkGraph } },
- { ids, chunkGroupAuxiliary, chunkGroupChildren, chunkGroupMaxAssets }
- ) => {
- const children =
- chunkGroupChildren &&
- chunkGroup.getChildrenByOrders(moduleGraph, chunkGraph);
- /**
- * @param {string} name Name
- * @returns {{ name: string, size: number }} Asset object
- */
- const toAsset = name => {
- const asset = compilation.getAsset(name);
- return {
- name,
- size: /** @type {number} */ (asset ? asset.info.size : -1)
- };
- };
- /** @type {(total: number, asset: { size: number }) => number} */
- const sizeReducer = (total, { size }) => total + size;
- const assets = uniqueArray(chunkGroup.chunks, c => c.files).map(toAsset);
- const auxiliaryAssets = uniqueOrderedArray(
- chunkGroup.chunks,
- c => c.auxiliaryFiles,
- compareIds
- ).map(toAsset);
- const assetsSize = assets.reduce(sizeReducer, 0);
- const auxiliaryAssetsSize = auxiliaryAssets.reduce(sizeReducer, 0);
- /** @type {KnownStatsChunkGroup} */
- const statsChunkGroup = {
- name,
- chunks: ids
- ? /** @type {ChunkId[]} */ (chunkGroup.chunks.map(c => c.id))
- : undefined,
- assets: assets.length <= chunkGroupMaxAssets ? assets : undefined,
- filteredAssets:
- assets.length <= chunkGroupMaxAssets ? 0 : assets.length,
- assetsSize,
- auxiliaryAssets:
- chunkGroupAuxiliary && auxiliaryAssets.length <= chunkGroupMaxAssets
- ? auxiliaryAssets
- : undefined,
- filteredAuxiliaryAssets:
- chunkGroupAuxiliary && auxiliaryAssets.length <= chunkGroupMaxAssets
- ? 0
- : auxiliaryAssets.length,
- auxiliaryAssetsSize,
- children: children
- ? mapObject(children, groups =>
- groups.map(group => {
- const assets = uniqueArray(group.chunks, c => c.files).map(
- toAsset
- );
- const auxiliaryAssets = uniqueOrderedArray(
- group.chunks,
- c => c.auxiliaryFiles,
- compareIds
- ).map(toAsset);
- /** @type {KnownStatsChunkGroup} */
- const childStatsChunkGroup = {
- name: group.name,
- chunks: ids
- ? /** @type {ChunkId[]} */
- (group.chunks.map(c => c.id))
- : undefined,
- assets:
- assets.length <= chunkGroupMaxAssets ? assets : undefined,
- filteredAssets:
- assets.length <= chunkGroupMaxAssets ? 0 : assets.length,
- auxiliaryAssets:
- chunkGroupAuxiliary &&
- auxiliaryAssets.length <= chunkGroupMaxAssets
- ? auxiliaryAssets
- : undefined,
- filteredAuxiliaryAssets:
- chunkGroupAuxiliary &&
- auxiliaryAssets.length <= chunkGroupMaxAssets
- ? 0
- : auxiliaryAssets.length
- };
- return childStatsChunkGroup;
- })
- )
- : undefined,
- childAssets: children
- ? mapObject(children, groups => {
- /** @type {Set<string>} */
- const set = new Set();
- for (const group of groups) {
- for (const chunk of group.chunks) {
- for (const asset of chunk.files) {
- set.add(asset);
- }
- }
- }
- return Array.from(set);
- })
- : undefined
- };
- Object.assign(object, statsChunkGroup);
- },
- performance: (object, { chunkGroup }) => {
- object.isOverSizeLimit = SizeLimitsPlugin.isOverSizeLimit(chunkGroup);
- }
- },
- module: {
- _: (object, module, context, options, factory) => {
- const { type } = context;
- const compilation = /** @type {Compilation} */ (context.compilation);
- const built = compilation.builtModules.has(module);
- const codeGenerated = compilation.codeGeneratedModules.has(module);
- const buildTimeExecuted =
- compilation.buildTimeExecutedModules.has(module);
- /** @type {{[x: string]: number}} */
- const sizes = {};
- for (const sourceType of module.getSourceTypes()) {
- sizes[sourceType] = module.size(sourceType);
- }
- /** @type {KnownStatsModule} */
- const statsModule = {
- type: "module",
- moduleType: module.type,
- layer: module.layer,
- size: module.size(),
- sizes,
- built,
- codeGenerated,
- buildTimeExecuted,
- cached: !built && !codeGenerated
- };
- Object.assign(object, statsModule);
- if (built || codeGenerated || options.cachedModules) {
- Object.assign(
- object,
- factory.create(`${type}$visible`, module, context)
- );
- }
- }
- },
- module$visible: {
- _: (object, module, context, { requestShortener }, factory) => {
- const { type, rootModules } = context;
- const compilation = /** @type {Compilation} */ (context.compilation);
- const { moduleGraph } = compilation;
- /** @type {Module[]} */
- const path = [];
- const issuer = moduleGraph.getIssuer(module);
- let current = issuer;
- while (current) {
- path.push(current);
- current = moduleGraph.getIssuer(current);
- }
- path.reverse();
- const profile = moduleGraph.getProfile(module);
- const errors = module.getErrors();
- const errorsCount = errors !== undefined ? countIterable(errors) : 0;
- const warnings = module.getWarnings();
- const warningsCount =
- warnings !== undefined ? countIterable(warnings) : 0;
- /** @type {KnownStatsModule} */
- const statsModule = {
- identifier: module.identifier(),
- name: module.readableIdentifier(requestShortener),
- nameForCondition: module.nameForCondition(),
- index: /** @type {number} */ (moduleGraph.getPreOrderIndex(module)),
- preOrderIndex: /** @type {number} */ (
- moduleGraph.getPreOrderIndex(module)
- ),
- index2: /** @type {number} */ (moduleGraph.getPostOrderIndex(module)),
- postOrderIndex: /** @type {number} */ (
- moduleGraph.getPostOrderIndex(module)
- ),
- cacheable: /** @type {BuildInfo} */ (module.buildInfo).cacheable,
- optional: module.isOptional(moduleGraph),
- orphan:
- !type.endsWith("module.modules[].module$visible") &&
- compilation.chunkGraph.getNumberOfModuleChunks(module) === 0,
- dependent: rootModules ? !rootModules.has(module) : undefined,
- issuer: issuer && issuer.identifier(),
- issuerName: issuer && issuer.readableIdentifier(requestShortener),
- issuerPath:
- issuer &&
- factory.create(`${type.slice(0, -8)}.issuerPath`, path, context),
- failed: errorsCount > 0,
- errors: errorsCount,
- warnings: warningsCount
- };
- Object.assign(object, statsModule);
- if (profile) {
- object.profile = factory.create(
- `${type.slice(0, -8)}.profile`,
- profile,
- context
- );
- }
- },
- ids: (object, module, { compilation: { chunkGraph, moduleGraph } }) => {
- object.id = /** @type {ModuleId} */ (chunkGraph.getModuleId(module));
- const issuer = moduleGraph.getIssuer(module);
- object.issuerId = issuer && chunkGraph.getModuleId(issuer);
- object.chunks =
- /** @type {ChunkId[]} */
- (
- Array.from(
- chunkGraph.getOrderedModuleChunksIterable(
- module,
- compareChunksById
- ),
- chunk => chunk.id
- )
- );
- },
- moduleAssets: (object, module) => {
- object.assets = /** @type {BuildInfo} */ (module.buildInfo).assets
- ? Object.keys(/** @type {BuildInfo} */ (module.buildInfo).assets)
- : [];
- },
- reasons: (object, module, context, options, factory) => {
- const {
- type,
- compilation: { moduleGraph }
- } = context;
- const groupsReasons = factory.create(
- `${type.slice(0, -8)}.reasons`,
- Array.from(moduleGraph.getIncomingConnections(module)),
- context
- );
- const limited = spaceLimited(
- groupsReasons,
- /** @type {number} */
- (options.reasonsSpace)
- );
- object.reasons = limited.children;
- object.filteredReasons = limited.filteredChildren;
- },
- usedExports: (
- object,
- module,
- { runtime, compilation: { moduleGraph } }
- ) => {
- const usedExports = moduleGraph.getUsedExports(module, runtime);
- if (usedExports === null) {
- object.usedExports = null;
- } else if (typeof usedExports === "boolean") {
- object.usedExports = usedExports;
- } else {
- object.usedExports = Array.from(usedExports);
- }
- },
- providedExports: (object, module, { compilation: { moduleGraph } }) => {
- const providedExports = moduleGraph.getProvidedExports(module);
- object.providedExports = Array.isArray(providedExports)
- ? providedExports
- : null;
- },
- optimizationBailout: (
- object,
- module,
- { compilation: { moduleGraph } },
- { requestShortener }
- ) => {
- object.optimizationBailout = moduleGraph
- .getOptimizationBailout(module)
- .map(item => {
- if (typeof item === "function") return item(requestShortener);
- return item;
- });
- },
- depth: (object, module, { compilation: { moduleGraph } }) => {
- object.depth = moduleGraph.getDepth(module);
- },
- nestedModules: (object, module, context, options, factory) => {
- const { type } = context;
- const innerModules = /** @type {Module & { modules?: Module[] }} */ (
- module
- ).modules;
- if (Array.isArray(innerModules)) {
- const groupedModules = factory.create(
- `${type.slice(0, -8)}.modules`,
- innerModules,
- context
- );
- const limited = spaceLimited(
- groupedModules,
- options.nestedModulesSpace
- );
- object.modules = limited.children;
- object.filteredModules = limited.filteredChildren;
- }
- },
- source: (object, module) => {
- const originalSource = module.originalSource();
- if (originalSource) {
- object.source = originalSource.source();
- }
- }
- },
- profile: {
- _: (object, profile) => {
- /** @type {KnownStatsProfile} */
- const statsProfile = {
- total:
- profile.factory +
- profile.restoring +
- profile.integration +
- profile.building +
- profile.storing,
- resolving: profile.factory,
- restoring: profile.restoring,
- building: profile.building,
- integration: profile.integration,
- storing: profile.storing,
- additionalResolving: profile.additionalFactories,
- additionalIntegration: profile.additionalIntegration,
- // TODO remove this in webpack 6
- factory: profile.factory,
- // TODO remove this in webpack 6
- dependencies: profile.additionalFactories
- };
- Object.assign(object, statsProfile);
- }
- },
- moduleIssuer: {
- _: (object, module, context, { requestShortener }, factory) => {
- const { type } = context;
- const compilation = /** @type {Compilation} */ (context.compilation);
- const { moduleGraph } = compilation;
- const profile = moduleGraph.getProfile(module);
- /** @type {Partial<KnownStatsModuleIssuer>} */
- const statsModuleIssuer = {
- identifier: module.identifier(),
- name: module.readableIdentifier(requestShortener)
- };
- Object.assign(object, statsModuleIssuer);
- if (profile) {
- object.profile = factory.create(`${type}.profile`, profile, context);
- }
- },
- ids: (object, module, { compilation: { chunkGraph } }) => {
- object.id = /** @type {ModuleId} */ (chunkGraph.getModuleId(module));
- }
- },
- moduleReason: {
- _: (object, reason, { runtime }, { requestShortener }) => {
- const dep = reason.dependency;
- const moduleDep =
- dep && dep instanceof ModuleDependency ? dep : undefined;
- /** @type {KnownStatsModuleReason} */
- const statsModuleReason = {
- moduleIdentifier: reason.originModule
- ? reason.originModule.identifier()
- : null,
- module: reason.originModule
- ? reason.originModule.readableIdentifier(requestShortener)
- : null,
- moduleName: reason.originModule
- ? reason.originModule.readableIdentifier(requestShortener)
- : null,
- resolvedModuleIdentifier: reason.resolvedOriginModule
- ? reason.resolvedOriginModule.identifier()
- : null,
- resolvedModule: reason.resolvedOriginModule
- ? reason.resolvedOriginModule.readableIdentifier(requestShortener)
- : null,
- type: reason.dependency ? reason.dependency.type : null,
- active: reason.isActive(runtime),
- explanation: reason.explanation,
- userRequest: (moduleDep && moduleDep.userRequest) || null
- };
- Object.assign(object, statsModuleReason);
- if (reason.dependency) {
- const locInfo = formatLocation(reason.dependency.loc);
- if (locInfo) {
- object.loc = locInfo;
- }
- }
- },
- ids: (object, reason, { compilation: { chunkGraph } }) => {
- object.moduleId = reason.originModule
- ? chunkGraph.getModuleId(reason.originModule)
- : null;
- object.resolvedModuleId = reason.resolvedOriginModule
- ? chunkGraph.getModuleId(reason.resolvedOriginModule)
- : null;
- }
- },
- chunk: {
- _: (object, chunk, { makePathsRelative, compilation: { chunkGraph } }) => {
- const childIdByOrder = chunk.getChildIdsByOrders(chunkGraph);
- /** @type {KnownStatsChunk} */
- const statsChunk = {
- rendered: chunk.rendered,
- initial: chunk.canBeInitial(),
- entry: chunk.hasRuntime(),
- recorded: AggressiveSplittingPlugin.wasChunkRecorded(chunk),
- reason: chunk.chunkReason,
- size: chunkGraph.getChunkModulesSize(chunk),
- sizes: chunkGraph.getChunkModulesSizes(chunk),
- names: chunk.name ? [chunk.name] : [],
- idHints: Array.from(chunk.idNameHints),
- runtime:
- chunk.runtime === undefined
- ? undefined
- : typeof chunk.runtime === "string"
- ? [makePathsRelative(chunk.runtime)]
- : Array.from(chunk.runtime.sort(), makePathsRelative),
- files: Array.from(chunk.files),
- auxiliaryFiles: Array.from(chunk.auxiliaryFiles).sort(compareIds),
- hash: /** @type {string} */ (chunk.renderedHash),
- childrenByOrder: childIdByOrder
- };
- Object.assign(object, statsChunk);
- },
- ids: (object, chunk) => {
- object.id = /** @type {ChunkId} */ (chunk.id);
- },
- chunkRelations: (object, chunk, { compilation: { chunkGraph } }) => {
- /** @type {Set<string|number>} */
- const parents = new Set();
- /** @type {Set<string|number>} */
- const children = new Set();
- /** @type {Set<string|number>} */
- const siblings = new Set();
- for (const chunkGroup of chunk.groupsIterable) {
- for (const parentGroup of chunkGroup.parentsIterable) {
- for (const chunk of parentGroup.chunks) {
- parents.add(/** @type {ChunkId} */ (chunk.id));
- }
- }
- for (const childGroup of chunkGroup.childrenIterable) {
- for (const chunk of childGroup.chunks) {
- children.add(/** @type {ChunkId} */ (chunk.id));
- }
- }
- for (const sibling of chunkGroup.chunks) {
- if (sibling !== chunk)
- siblings.add(/** @type {ChunkId} */ (sibling.id));
- }
- }
- object.siblings = Array.from(siblings).sort(compareIds);
- object.parents = Array.from(parents).sort(compareIds);
- object.children = Array.from(children).sort(compareIds);
- },
- chunkModules: (object, chunk, context, options, factory) => {
- const {
- type,
- compilation: { chunkGraph }
- } = context;
- const array = chunkGraph.getChunkModules(chunk);
- const groupedModules = factory.create(`${type}.modules`, array, {
- ...context,
- runtime: chunk.runtime,
- rootModules: new Set(chunkGraph.getChunkRootModules(chunk))
- });
- const limited = spaceLimited(groupedModules, options.chunkModulesSpace);
- object.modules = limited.children;
- object.filteredModules = limited.filteredChildren;
- },
- chunkOrigins: (object, chunk, context, options, factory) => {
- const {
- type,
- compilation: { chunkGraph }
- } = context;
- /** @type {Set<string>} */
- const originsKeySet = new Set();
- const origins = [];
- for (const g of chunk.groupsIterable) {
- origins.push(...g.origins);
- }
- const array = origins.filter(origin => {
- const key = [
- origin.module ? chunkGraph.getModuleId(origin.module) : undefined,
- formatLocation(origin.loc),
- origin.request
- ].join();
- if (originsKeySet.has(key)) return false;
- originsKeySet.add(key);
- return true;
- });
- object.origins = factory.create(`${type}.origins`, array, context);
- }
- },
- chunkOrigin: {
- _: (object, origin, context, { requestShortener }) => {
- /** @type {KnownStatsChunkOrigin} */
- const statsChunkOrigin = {
- module: origin.module ? origin.module.identifier() : "",
- moduleIdentifier: origin.module ? origin.module.identifier() : "",
- moduleName: origin.module
- ? origin.module.readableIdentifier(requestShortener)
- : "",
- loc: formatLocation(origin.loc),
- request: origin.request
- };
- Object.assign(object, statsChunkOrigin);
- },
- ids: (object, origin, { compilation: { chunkGraph } }) => {
- object.moduleId = origin.module
- ? /** @type {ModuleId} */ (chunkGraph.getModuleId(origin.module))
- : undefined;
- }
- },
- error: EXTRACT_ERROR,
- warning: EXTRACT_ERROR,
- moduleTraceItem: {
- _: (object, { origin, module }, context, { requestShortener }, factory) => {
- const {
- type,
- compilation: { moduleGraph }
- } = context;
- object.originIdentifier = origin.identifier();
- object.originName = origin.readableIdentifier(requestShortener);
- object.moduleIdentifier = module.identifier();
- object.moduleName = module.readableIdentifier(requestShortener);
- const dependencies = Array.from(
- moduleGraph.getIncomingConnections(module)
- )
- .filter(c => c.resolvedOriginModule === origin && c.dependency)
- .map(c => c.dependency);
- object.dependencies = factory.create(
- `${type}.dependencies`,
- Array.from(new Set(dependencies)),
- context
- );
- },
- ids: (object, { origin, module }, { compilation: { chunkGraph } }) => {
- object.originId =
- /** @type {ModuleId} */
- (chunkGraph.getModuleId(origin));
- object.moduleId =
- /** @type {ModuleId} */
- (chunkGraph.getModuleId(module));
- }
- },
- moduleTraceDependency: {
- _: (object, dependency) => {
- object.loc = formatLocation(dependency.loc);
- }
- }
- };
- /** @type {Record<string, Record<string, (thing: ModuleGraphConnection, context: StatsFactoryContext, options: NormalizedStatsOptions, idx: number, i: number) => boolean | undefined>>} */
- const FILTER = {
- "module.reasons": {
- "!orphanModules": (reason, { compilation: { chunkGraph } }) => {
- if (
- reason.originModule &&
- chunkGraph.getNumberOfModuleChunks(reason.originModule) === 0
- ) {
- return false;
- }
- }
- }
- };
- /** @type {Record<string, Record<string, (thing: KnownStatsError, context: StatsFactoryContext, options: NormalizedStatsOptions, idx: number, i: number) => boolean | undefined>>} */
- const FILTER_RESULTS = {
- "compilation.warnings": {
- warningsFilter: util.deprecate(
- (warning, context, { warningsFilter }) => {
- const warningString = Object.keys(warning)
- .map(key => `${warning[/** @type {keyof KnownStatsError} */ (key)]}`)
- .join("\n");
- return !warningsFilter.some(filter => filter(warning, warningString));
- },
- "config.stats.warningsFilter is deprecated in favor of config.ignoreWarnings",
- "DEP_WEBPACK_STATS_WARNINGS_FILTER"
- )
- }
- };
- /**
- * @type {Record<string, (comparators: Comparator<Module>[], context: StatsFactoryContext) => void>}
- */
- const MODULES_SORTER = {
- _: (comparators, { compilation: { moduleGraph } }) => {
- comparators.push(
- compareSelect(m => moduleGraph.getDepth(m), compareNumbers),
- compareSelect(m => moduleGraph.getPreOrderIndex(m), compareNumbers),
- compareSelect(m => m.identifier(), compareIds)
- );
- }
- };
- /** @type {Record<string, Record<string, (comparators: Comparator<any>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>>} */
- const SORTERS = {
- "compilation.chunks": {
- _: comparators => {
- comparators.push(compareSelect(c => c.id, compareIds));
- }
- },
- "compilation.modules": MODULES_SORTER,
- "chunk.rootModules": MODULES_SORTER,
- "chunk.modules": MODULES_SORTER,
- "module.modules": MODULES_SORTER,
- "module.reasons": {
- _: (comparators, { compilation: { chunkGraph } }) => {
- comparators.push(
- compareSelect(x => x.originModule, compareModulesByIdentifier)
- );
- comparators.push(
- compareSelect(x => x.resolvedOriginModule, compareModulesByIdentifier)
- );
- comparators.push(
- compareSelect(
- x => x.dependency,
- concatComparators(
- compareSelect(
- /**
- * @param {Dependency} x dependency
- * @returns {DependencyLocation} location
- */
- x => x.loc,
- compareLocations
- ),
- compareSelect(x => x.type, compareIds)
- )
- )
- );
- }
- },
- "chunk.origins": {
- _: (comparators, { compilation: { chunkGraph } }) => {
- comparators.push(
- compareSelect(
- origin =>
- origin.module ? chunkGraph.getModuleId(origin.module) : undefined,
- compareIds
- ),
- compareSelect(origin => formatLocation(origin.loc), compareIds),
- compareSelect(origin => origin.request, compareIds)
- );
- }
- }
- };
- /**
- * @template T
- * @typedef {T & { children: Children<T>[] | undefined, filteredChildren?: number }} Children
- */
- /**
- * @template T
- * @param {Children<T>} item item
- * @returns {number} item size
- */
- const getItemSize = item =>
- // Each item takes 1 line
- // + the size of the children
- // + 1 extra line when it has children and filteredChildren
- !item.children
- ? 1
- : item.filteredChildren
- ? 2 + getTotalSize(item.children)
- : 1 + getTotalSize(item.children);
- /**
- * @template T
- * @param {Children<T>[]} children children
- * @returns {number} total size
- */
- const getTotalSize = children => {
- let size = 0;
- for (const child of children) {
- size += getItemSize(child);
- }
- return size;
- };
- /**
- * @template T
- * @param {Children<T>[]} children children
- * @returns {number} total items
- */
- const getTotalItems = children => {
- let count = 0;
- for (const child of children) {
- if (!child.children && !child.filteredChildren) {
- count++;
- } else {
- if (child.children) count += getTotalItems(child.children);
- if (child.filteredChildren) count += child.filteredChildren;
- }
- }
- return count;
- };
- /**
- * @template T
- * @param {Children<T>[]} children children
- * @returns {Children<T>[]} collapsed children
- */
- const collapse = children => {
- // After collapse each child must take exactly one line
- const newChildren = [];
- for (const child of children) {
- if (child.children) {
- let filteredChildren = child.filteredChildren || 0;
- filteredChildren += getTotalItems(child.children);
- newChildren.push({
- ...child,
- children: undefined,
- filteredChildren
- });
- } else {
- newChildren.push(child);
- }
- }
- return newChildren;
- };
- /**
- * @template T
- * @param {Children<T>[]} itemsAndGroups item and groups
- * @param {number} max max
- * @param {boolean=} filteredChildrenLineReserved filtered children line reserved
- * @returns {Children<T>} result
- */
- const spaceLimited = (
- itemsAndGroups,
- max,
- filteredChildrenLineReserved = false
- ) => {
- if (max < 1) {
- return /** @type {Children<T>} */ ({
- children: undefined,
- filteredChildren: getTotalItems(itemsAndGroups)
- });
- }
- /** @type {Children<T>[] | undefined} */
- let children;
- /** @type {number | undefined} */
- let filteredChildren;
- // This are the groups, which take 1+ lines each
- /** @type {Children<T>[] | undefined} */
- const groups = [];
- // The sizes of the groups are stored in groupSizes
- /** @type {number[]} */
- const groupSizes = [];
- // This are the items, which take 1 line each
- const items = [];
- // The total of group sizes
- let groupsSize = 0;
- for (const itemOrGroup of itemsAndGroups) {
- // is item
- if (!itemOrGroup.children && !itemOrGroup.filteredChildren) {
- items.push(itemOrGroup);
- } else {
- groups.push(itemOrGroup);
- const size = getItemSize(itemOrGroup);
- groupSizes.push(size);
- groupsSize += size;
- }
- }
- if (groupsSize + items.length <= max) {
- // The total size in the current state fits into the max
- // keep all
- children = groups.length > 0 ? groups.concat(items) : items;
- } else if (groups.length === 0) {
- // slice items to max
- // inner space marks that lines for filteredChildren already reserved
- const limit = max - (filteredChildrenLineReserved ? 0 : 1);
- filteredChildren = items.length - limit;
- items.length = limit;
- children = items;
- } else {
- // limit is the size when all groups are collapsed
- const limit =
- groups.length +
- (filteredChildrenLineReserved || items.length === 0 ? 0 : 1);
- if (limit < max) {
- // calculate how much we are over the size limit
- // this allows to approach the limit faster
- let oversize;
- // If each group would take 1 line the total would be below the maximum
- // collapse some groups, keep items
- while (
- (oversize =
- groupsSize +
- items.length +
- (filteredChildren && !filteredChildrenLineReserved ? 1 : 0) -
- max) > 0
- ) {
- // Find the maximum group and process only this one
- const maxGroupSize = Math.max(...groupSizes);
- if (maxGroupSize < items.length) {
- filteredChildren = items.length;
- items.length = 0;
- continue;
- }
- for (let i = 0; i < groups.length; i++) {
- if (groupSizes[i] === maxGroupSize) {
- const group = groups[i];
- // run this algorithm recursively and limit the size of the children to
- // current size - oversize / number of groups
- // So it should always end up being smaller
- const headerSize = group.filteredChildren ? 2 : 1;
- const limited = spaceLimited(
- /** @type {Children<T>[]} */ (group.children),
- maxGroupSize -
- // we should use ceil to always feet in max
- Math.ceil(oversize / groups.length) -
- // we substitute size of group head
- headerSize,
- headerSize === 2
- );
- groups[i] = {
- ...group,
- children: limited.children,
- filteredChildren: limited.filteredChildren
- ? (group.filteredChildren || 0) + limited.filteredChildren
- : group.filteredChildren
- };
- const newSize = getItemSize(groups[i]);
- groupsSize -= maxGroupSize - newSize;
- groupSizes[i] = newSize;
- break;
- }
- }
- }
- children = groups.concat(items);
- } else if (limit === max) {
- // If we have only enough space to show one line per group and one line for the filtered items
- // collapse all groups and items
- children = collapse(groups);
- filteredChildren = items.length;
- } else {
- // If we have no space
- // collapse complete group
- filteredChildren = getTotalItems(itemsAndGroups);
- }
- }
- return /** @type {Children<T>} */ ({ children, filteredChildren });
- };
- /**
- * @param {StatsError[]} errors errors
- * @param {number} max max
- * @returns {[StatsError[], number]} error space limit
- */
- const errorsSpaceLimit = (errors, max) => {
- let filtered = 0;
- // Can not fit into limit
- // print only messages
- if (errors.length + 1 >= max)
- return [
- errors.map(error => {
- if (typeof error === "string" || !error.details) return error;
- filtered++;
- return { ...error, details: "" };
- }),
- filtered
- ];
- let fullLength = errors.length;
- let result = errors;
- let i = 0;
- for (; i < errors.length; i++) {
- const error = errors[i];
- if (typeof error !== "string" && error.details) {
- const splitted = error.details.split("\n");
- const len = splitted.length;
- fullLength += len;
- if (fullLength > max) {
- result = i > 0 ? errors.slice(0, i) : [];
- const overLimit = fullLength - max + 1;
- const error = errors[i++];
- result.push({
- ...error,
- details:
- /** @type {string} */
- (error.details).split("\n").slice(0, -overLimit).join("\n"),
- filteredDetails: overLimit
- });
- filtered = errors.length - i;
- for (; i < errors.length; i++) {
- const error = errors[i];
- if (typeof error === "string" || !error.details) result.push(error);
- result.push({ ...error, details: "" });
- }
- break;
- } else if (fullLength === max) {
- result = errors.slice(0, ++i);
- filtered = errors.length - i;
- for (; i < errors.length; i++) {
- const error = errors[i];
- if (typeof error === "string" || !error.details) result.push(error);
- result.push({ ...error, details: "" });
- }
- break;
- }
- }
- }
- return [result, filtered];
- };
- /**
- * @template {{ size: number }} T
- * @template {{ size: number }} R
- * @param {(R | T)[]} children children
- * @param {T[]} assets assets
- * @returns {{ size: number }} asset size
- */
- const assetGroup = (children, assets) => {
- let size = 0;
- for (const asset of children) {
- size += asset.size;
- }
- return { size };
- };
- /**
- * @template {{ size: number, sizes: Record<string, number> }} T
- * @param {Children<T>[]} children children
- * @param {KnownStatsModule[]} modules modules
- * @returns {{ size: number, sizes: Record<string, number>}} size and sizes
- */
- const moduleGroup = (children, modules) => {
- let size = 0;
- /** @type {Record<string, number>} */
- const sizes = {};
- for (const module of children) {
- size += module.size;
- for (const key of Object.keys(module.sizes)) {
- sizes[key] = (sizes[key] || 0) + module.sizes[key];
- }
- }
- return {
- size,
- sizes
- };
- };
- /**
- * @template {{ active: boolean }} T
- * @param {Children<T>[]} children children
- * @param {KnownStatsModuleReason[]} reasons reasons
- * @returns {{ active: boolean }} reason group
- */
- const reasonGroup = (children, reasons) => {
- let active = false;
- for (const reason of children) {
- active = active || reason.active;
- }
- return {
- active
- };
- };
- const GROUP_EXTENSION_REGEXP = /(\.[^.]+?)(?:\?|(?: \+ \d+ modules?)?$)/;
- const GROUP_PATH_REGEXP = /(.+)[/\\][^/\\]+?(?:\?|(?: \+ \d+ modules?)?$)/;
- /** @typedef {Record<string, (groupConfigs: GroupConfig<KnownStatsAsset, TODO>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>} AssetsGroupers */
- /** @type {AssetsGroupers} */
- const ASSETS_GROUPERS = {
- _: (groupConfigs, context, options) => {
- /**
- * @param {keyof KnownStatsAsset} name name
- * @param {boolean=} exclude need exclude?
- */
- const groupByFlag = (name, exclude) => {
- groupConfigs.push({
- getKeys: asset => (asset[name] ? ["1"] : undefined),
- getOptions: () => ({
- groupChildren: !exclude,
- force: exclude
- }),
- createGroup: (key, children, assets) =>
- exclude
- ? {
- type: "assets by status",
- [name]: Boolean(key),
- filteredChildren: assets.length,
- ...assetGroup(children, assets)
- }
- : {
- type: "assets by status",
- [name]: Boolean(key),
- children,
- ...assetGroup(children, assets)
- }
- });
- };
- const {
- groupAssetsByEmitStatus,
- groupAssetsByPath,
- groupAssetsByExtension
- } = options;
- if (groupAssetsByEmitStatus) {
- groupByFlag("emitted");
- groupByFlag("comparedForEmit");
- groupByFlag("isOverSizeLimit");
- }
- if (groupAssetsByEmitStatus || !options.cachedAssets) {
- groupByFlag("cached", !options.cachedAssets);
- }
- if (groupAssetsByPath || groupAssetsByExtension) {
- groupConfigs.push({
- getKeys: asset => {
- const extensionMatch =
- groupAssetsByExtension && GROUP_EXTENSION_REGEXP.exec(asset.name);
- const extension = extensionMatch ? extensionMatch[1] : "";
- const pathMatch =
- groupAssetsByPath && GROUP_PATH_REGEXP.exec(asset.name);
- const path = pathMatch ? pathMatch[1].split(/[/\\]/) : [];
- const keys = [];
- if (groupAssetsByPath) {
- keys.push(".");
- if (extension)
- keys.push(
- path.length
- ? `${path.join("/")}/*${extension}`
- : `*${extension}`
- );
- while (path.length > 0) {
- keys.push(`${path.join("/")}/`);
- path.pop();
- }
- } else if (extension) {
- keys.push(`*${extension}`);
- }
- return keys;
- },
- createGroup: (key, children, assets) => ({
- type: groupAssetsByPath ? "assets by path" : "assets by extension",
- name: key,
- children,
- ...assetGroup(children, assets)
- })
- });
- }
- },
- groupAssetsByInfo: (groupConfigs, context, options) => {
- /**
- * @param {string} name name
- */
- const groupByAssetInfoFlag = name => {
- groupConfigs.push({
- getKeys: asset => (asset.info && asset.info[name] ? ["1"] : undefined),
- createGroup: (key, children, assets) => ({
- type: "assets by info",
- info: {
- [name]: Boolean(key)
- },
- children,
- ...assetGroup(children, assets)
- })
- });
- };
- groupByAssetInfoFlag("immutable");
- groupByAssetInfoFlag("development");
- groupByAssetInfoFlag("hotModuleReplacement");
- },
- groupAssetsByChunk: (groupConfigs, context, options) => {
- /**
- * @param {keyof KnownStatsAsset} name name
- */
- const groupByNames = name => {
- groupConfigs.push({
- getKeys: asset => /** @type {string[]} */ (asset[name]),
- createGroup: (key, children, assets) => ({
- type: "assets by chunk",
- [name]: [key],
- children,
- ...assetGroup(children, assets)
- })
- });
- };
- groupByNames("chunkNames");
- groupByNames("auxiliaryChunkNames");
- groupByNames("chunkIdHints");
- groupByNames("auxiliaryChunkIdHints");
- },
- excludeAssets: (groupConfigs, context, { excludeAssets }) => {
- groupConfigs.push({
- getKeys: asset => {
- const ident = asset.name;
- const excluded = excludeAssets.some(fn => fn(ident, asset));
- if (excluded) return ["excluded"];
- },
- getOptions: () => ({
- groupChildren: false,
- force: true
- }),
- createGroup: (key, children, assets) => ({
- type: "hidden assets",
- filteredChildren: assets.length,
- ...assetGroup(children, assets)
- })
- });
- }
- };
- /** @typedef {Record<string, (groupConfigs: GroupConfig<KnownStatsModule, TODO>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>} ModulesGroupers */
- /** @type {(type: "module" | "chunk" | "root-of-chunk" | "nested") => ModulesGroupers} */
- const MODULES_GROUPERS = type => ({
- _: (groupConfigs, context, options) => {
- /**
- * @param {keyof KnownStatsModule} name name
- * @param {string} type type
- * @param {boolean=} exclude need exclude?
- */
- const groupByFlag = (name, type, exclude) => {
- groupConfigs.push({
- getKeys: module => (module[name] ? ["1"] : undefined),
- getOptions: () => ({
- groupChildren: !exclude,
- force: exclude
- }),
- createGroup: (key, children, modules) => ({
- type,
- [name]: Boolean(key),
- ...(exclude ? { filteredChildren: modules.length } : { children }),
- ...moduleGroup(children, modules)
- })
- });
- };
- const {
- groupModulesByCacheStatus,
- groupModulesByLayer,
- groupModulesByAttributes,
- groupModulesByType,
- groupModulesByPath,
- groupModulesByExtension
- } = options;
- if (groupModulesByAttributes) {
- groupByFlag("errors", "modules with errors");
- groupByFlag("warnings", "modules with warnings");
- groupByFlag("assets", "modules with assets");
- groupByFlag("optional", "optional modules");
- }
- if (groupModulesByCacheStatus) {
- groupByFlag("cacheable", "cacheable modules");
- groupByFlag("built", "built modules");
- groupByFlag("codeGenerated", "code generated modules");
- }
- if (groupModulesByCacheStatus || !options.cachedModules) {
- groupByFlag("cached", "cached modules", !options.cachedModules);
- }
- if (groupModulesByAttributes || !options.orphanModules) {
- groupByFlag("orphan", "orphan modules", !options.orphanModules);
- }
- if (groupModulesByAttributes || !options.dependentModules) {
- groupByFlag("dependent", "dependent modules", !options.dependentModules);
- }
- if (groupModulesByType || !options.runtimeModules) {
- groupConfigs.push({
- getKeys: module => {
- if (!module.moduleType) return;
- if (groupModulesByType) {
- return [module.moduleType.split("/", 1)[0]];
- } else if (module.moduleType === WEBPACK_MODULE_TYPE_RUNTIME) {
- return [WEBPACK_MODULE_TYPE_RUNTIME];
- }
- },
- getOptions: key => {
- const exclude =
- key === WEBPACK_MODULE_TYPE_RUNTIME && !options.runtimeModules;
- return {
- groupChildren: !exclude,
- force: exclude
- };
- },
- createGroup: (key, children, modules) => {
- const exclude =
- key === WEBPACK_MODULE_TYPE_RUNTIME && !options.runtimeModules;
- return {
- type: `${key} modules`,
- moduleType: key,
- ...(exclude ? { filteredChildren: modules.length } : { children }),
- ...moduleGroup(children, modules)
- };
- }
- });
- }
- if (groupModulesByLayer) {
- groupConfigs.push({
- getKeys: module => /** @type {string[]} */ ([module.layer]),
- createGroup: (key, children, modules) => ({
- type: "modules by layer",
- layer: key,
- children,
- ...moduleGroup(children, modules)
- })
- });
- }
- if (groupModulesByPath || groupModulesByExtension) {
- groupConfigs.push({
- getKeys: module => {
- if (!module.name) return;
- const resource = parseResource(
- /** @type {string} */ (module.name.split("!").pop())
- ).path;
- const dataUrl = /^data:[^,;]+/.exec(resource);
- if (dataUrl) return [dataUrl[0]];
- const extensionMatch =
- groupModulesByExtension && GROUP_EXTENSION_REGEXP.exec(resource);
- const extension = extensionMatch ? extensionMatch[1] : "";
- const pathMatch =
- groupModulesByPath && GROUP_PATH_REGEXP.exec(resource);
- const path = pathMatch ? pathMatch[1].split(/[/\\]/) : [];
- const keys = [];
- if (groupModulesByPath) {
- if (extension)
- keys.push(
- path.length
- ? `${path.join("/")}/*${extension}`
- : `*${extension}`
- );
- while (path.length > 0) {
- keys.push(`${path.join("/")}/`);
- path.pop();
- }
- } else if (extension) {
- keys.push(`*${extension}`);
- }
- return keys;
- },
- createGroup: (key, children, modules) => {
- const isDataUrl = key.startsWith("data:");
- return {
- type: isDataUrl
- ? "modules by mime type"
- : groupModulesByPath
- ? "modules by path"
- : "modules by extension",
- name: isDataUrl ? key.slice(/* 'data:'.length */ 5) : key,
- children,
- ...moduleGroup(children, modules)
- };
- }
- });
- }
- },
- excludeModules: (groupConfigs, context, { excludeModules }) => {
- groupConfigs.push({
- getKeys: module => {
- const name = module.name;
- if (name) {
- const excluded = excludeModules.some(fn => fn(name, module, type));
- if (excluded) return ["1"];
- }
- },
- getOptions: () => ({
- groupChildren: false,
- force: true
- }),
- createGroup: (key, children, modules) => ({
- type: "hidden modules",
- filteredChildren: children.length,
- ...moduleGroup(children, modules)
- })
- });
- }
- });
- /** @typedef {Record<string, (groupConfigs: GroupConfig<KnownStatsModuleReason, TODO>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>} ModuleReasonsGroupers */
- /** @type {ModuleReasonsGroupers} */
- const MODULE_REASONS_GROUPERS = {
- groupReasonsByOrigin: groupConfigs => {
- groupConfigs.push({
- getKeys: reason => /** @type {string[]} */ ([reason.module]),
- createGroup: (key, children, reasons) => ({
- type: "from origin",
- module: key,
- children,
- ...reasonGroup(children, reasons)
- })
- });
- }
- };
- /** @type {Record<string, AssetsGroupers | ModulesGroupers | ModuleReasonsGroupers>} */
- const RESULT_GROUPERS = {
- "compilation.assets": ASSETS_GROUPERS,
- "asset.related": ASSETS_GROUPERS,
- "compilation.modules": MODULES_GROUPERS("module"),
- "chunk.modules": MODULES_GROUPERS("chunk"),
- "chunk.rootModules": MODULES_GROUPERS("root-of-chunk"),
- "module.modules": MODULES_GROUPERS("nested"),
- "module.reasons": MODULE_REASONS_GROUPERS
- };
- // remove a prefixed "!" that can be specified to reverse sort order
- /**
- * @param {string} field a field name
- * @returns {field} normalized field
- */
- const normalizeFieldKey = field => {
- if (field[0] === "!") {
- return field.slice(1);
- }
- return field;
- };
- // if a field is prefixed by a "!" reverse sort order
- /**
- * @param {string} field a field name
- * @returns {boolean} result
- */
- const sortOrderRegular = field => {
- if (field[0] === "!") {
- return false;
- }
- return true;
- };
- /**
- * @template T
- * @param {string | false} field field name
- * @returns {(a: T, b: T) => 0 | 1 | -1} comparators
- */
- const sortByField = field => {
- if (!field) {
- /**
- * @param {T} a first
- * @param {T} b second
- * @returns {-1 | 0 | 1} zero
- */
- const noSort = (a, b) => 0;
- return noSort;
- }
- const fieldKey = normalizeFieldKey(field);
- let sortFn = compareSelect(m => m[fieldKey], compareIds);
- // if a field is prefixed with a "!" the sort is reversed!
- const sortIsRegular = sortOrderRegular(field);
- if (!sortIsRegular) {
- const oldSortFn = sortFn;
- sortFn = (a, b) => oldSortFn(b, a);
- }
- return sortFn;
- };
- /** @type {Record<string, (comparators: Comparator<TODO>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>} */
- const ASSET_SORTERS = {
- assetsSort: (comparators, context, { assetsSort }) => {
- comparators.push(sortByField(assetsSort));
- },
- _: comparators => {
- comparators.push(compareSelect(a => a.name, compareIds));
- }
- };
- /** @type {Record<string, Record<string, (comparators: Comparator<TODO>[], context: StatsFactoryContext, options: NormalizedStatsOptions) => void>>} */
- const RESULT_SORTERS = {
- "compilation.chunks": {
- chunksSort: (comparators, context, { chunksSort }) => {
- comparators.push(sortByField(chunksSort));
- }
- },
- "compilation.modules": {
- modulesSort: (comparators, context, { modulesSort }) => {
- comparators.push(sortByField(modulesSort));
- }
- },
- "chunk.modules": {
- chunkModulesSort: (comparators, context, { chunkModulesSort }) => {
- comparators.push(sortByField(chunkModulesSort));
- }
- },
- "module.modules": {
- nestedModulesSort: (comparators, context, { nestedModulesSort }) => {
- comparators.push(sortByField(nestedModulesSort));
- }
- },
- "compilation.assets": ASSET_SORTERS,
- "asset.related": ASSET_SORTERS
- };
- /**
- * @template T
- * @param {Record<string, Record<string, T>>} config the config see above
- * @param {NormalizedStatsOptions} options stats options
- * @param {(hookFor: string, fn: T) => void} fn handler function called for every active line in config
- * @returns {void}
- */
- const iterateConfig = (config, options, fn) => {
- for (const hookFor of Object.keys(config)) {
- const subConfig = config[hookFor];
- for (const option of Object.keys(subConfig)) {
- if (option !== "_") {
- if (option.startsWith("!")) {
- if (options[option.slice(1)]) continue;
- } else {
- const value = options[option];
- if (
- value === false ||
- value === undefined ||
- (Array.isArray(value) && value.length === 0)
- )
- continue;
- }
- }
- fn(hookFor, subConfig[option]);
- }
- }
- };
- /** @type {Record<string, string>} */
- const ITEM_NAMES = {
- "compilation.children[]": "compilation",
- "compilation.modules[]": "module",
- "compilation.entrypoints[]": "chunkGroup",
- "compilation.namedChunkGroups[]": "chunkGroup",
- "compilation.errors[]": "error",
- "compilation.warnings[]": "warning",
- "chunk.modules[]": "module",
- "chunk.rootModules[]": "module",
- "chunk.origins[]": "chunkOrigin",
- "compilation.chunks[]": "chunk",
- "compilation.assets[]": "asset",
- "asset.related[]": "asset",
- "module.issuerPath[]": "moduleIssuer",
- "module.reasons[]": "moduleReason",
- "module.modules[]": "module",
- "module.children[]": "module",
- "moduleTrace[]": "moduleTraceItem",
- "moduleTraceItem.dependencies[]": "moduleTraceDependency"
- };
- /**
- * @template T
- * @typedef {{ name: T }} NamedObject
- */
- /**
- * @template {{ name: string }} T
- * @param {T[]} items items to be merged
- * @returns {NamedObject<T>} an object
- */
- const mergeToObject = items => {
- const obj = Object.create(null);
- for (const item of items) {
- obj[item.name] = item;
- }
- return obj;
- };
- /**
- * @template {{ name: string }} T
- * @type {Record<string, (items: T[]) => NamedObject<T>>}
- */
- const MERGER = {
- "compilation.entrypoints": mergeToObject,
- "compilation.namedChunkGroups": mergeToObject
- };
- class DefaultStatsFactoryPlugin {
- /**
- * Apply the plugin
- * @param {Compiler} compiler the compiler instance
- * @returns {void}
- */
- apply(compiler) {
- compiler.hooks.compilation.tap("DefaultStatsFactoryPlugin", compilation => {
- compilation.hooks.statsFactory.tap(
- "DefaultStatsFactoryPlugin",
- /**
- * @param {StatsFactory} stats stats factory
- * @param {NormalizedStatsOptions} options stats options
- */
- (stats, options) => {
- iterateConfig(
- /** @type {TODO} */
- (SIMPLE_EXTRACTORS),
- options,
- (hookFor, fn) => {
- stats.hooks.extract
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (obj, data, ctx) =>
- fn(obj, data, ctx, options, stats)
- );
- }
- );
- iterateConfig(FILTER, options, (hookFor, fn) => {
- stats.hooks.filter
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (item, ctx, idx, i) =>
- fn(item, ctx, options, idx, i)
- );
- });
- iterateConfig(FILTER_RESULTS, options, (hookFor, fn) => {
- stats.hooks.filterResults
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (item, ctx, idx, i) =>
- fn(item, ctx, options, idx, i)
- );
- });
- iterateConfig(SORTERS, options, (hookFor, fn) => {
- stats.hooks.sort
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (comparators, ctx) =>
- fn(comparators, ctx, options)
- );
- });
- iterateConfig(RESULT_SORTERS, options, (hookFor, fn) => {
- stats.hooks.sortResults
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (comparators, ctx) =>
- fn(comparators, ctx, options)
- );
- });
- iterateConfig(
- /** @type {TODO} */
- (RESULT_GROUPERS),
- options,
- (hookFor, fn) => {
- stats.hooks.groupResults
- .for(hookFor)
- .tap("DefaultStatsFactoryPlugin", (groupConfigs, ctx) =>
- fn(groupConfigs, ctx, options)
- );
- }
- );
- for (const key of Object.keys(ITEM_NAMES)) {
- const itemName = ITEM_NAMES[key];
- stats.hooks.getItemName
- .for(key)
- .tap("DefaultStatsFactoryPlugin", () => itemName);
- }
- for (const key of Object.keys(MERGER)) {
- const merger = MERGER[key];
- stats.hooks.merge.for(key).tap("DefaultStatsFactoryPlugin", merger);
- }
- if (options.children) {
- if (Array.isArray(options.children)) {
- stats.hooks.getItemFactory
- .for("compilation.children[].compilation")
- .tap(
- "DefaultStatsFactoryPlugin",
- /**
- * @param {Compilation} comp compilation
- * @param {StatsFactoryContext} options options
- * @returns {StatsFactory | undefined} stats factory
- */
- (comp, { _index: idx }) => {
- const children =
- /** @type {TODO} */
- (options.children);
- if (idx < children.length) {
- return compilation.createStatsFactory(
- compilation.createStatsOptions(children[idx])
- );
- }
- }
- );
- } else if (options.children !== true) {
- const childFactory = compilation.createStatsFactory(
- compilation.createStatsOptions(options.children)
- );
- stats.hooks.getItemFactory
- .for("compilation.children[].compilation")
- .tap("DefaultStatsFactoryPlugin", () => childFactory);
- }
- }
- }
- );
- });
- }
- }
- module.exports = DefaultStatsFactoryPlugin;
|