webpack/lib/stats/DefaultStatsPresetPlugin.js

290 lines
7.5 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const RequestShortener = require("../RequestShortener");
/** @typedef {import("../Compilation")} Compilation */
/** @typedef {import("../Compiler")} Compiler */
const applyDefaults = (options, defaults) => {
for (const key of Object.keys(defaults)) {
if (typeof options[key] === "undefined") {
options[key] = defaults[key];
}
}
};
const NAMED_PRESETS = {
verbose: {
relatedAssets: true,
entrypoints: true,
chunkGroups: true,
ids: true,
modules: false,
chunks: true,
2018-12-22 20:19:13 +08:00
chunkRelations: true,
chunkModules: true,
2020-09-02 00:08:09 +08:00
dependentModules: true,
chunkOrigins: true,
depth: true,
env: true,
reasons: true,
usedExports: true,
providedExports: true,
optimizationBailout: true,
errorDetails: true,
errorStack: true,
publicPath: true,
2019-07-24 16:51:04 +08:00
logging: "verbose",
orphanModules: true,
runtimeModules: true,
exclude: false,
2020-09-02 00:08:09 +08:00
modulesSpace: Infinity,
assetsSpace: Infinity
},
detailed: {
relatedAssets: true,
entrypoints: true,
chunkGroups: true,
ids: true,
chunks: true,
2018-12-22 20:19:13 +08:00
chunkRelations: true,
chunkModules: false,
chunkOrigins: true,
depth: true,
usedExports: true,
providedExports: true,
optimizationBailout: true,
errorDetails: true,
publicPath: true,
2019-07-24 16:51:04 +08:00
logging: true,
runtimeModules: true,
exclude: false,
2020-09-02 00:08:09 +08:00
modulesSpace: Infinity,
assetsSpace: Infinity
},
minimal: {
all: false,
modules: true,
2020-09-02 00:08:09 +08:00
modulesSpace: 0,
assets: true,
assetsSpace: 0,
errors: true,
2019-07-24 16:51:04 +08:00
warnings: true,
logging: "warn"
},
"errors-only": {
all: false,
errors: true,
2019-07-24 16:51:04 +08:00
moduleTrace: true,
logging: "error"
},
2019-05-10 03:38:10 +08:00
"errors-warnings": {
all: false,
errors: true,
2019-07-24 16:51:04 +08:00
warnings: true,
logging: "warn"
2019-05-10 03:38:10 +08:00
},
none: {
all: false
}
};
const NORMAL_ON = ({ all }) => all !== false;
const NORMAL_OFF = ({ all }) => all === true;
2020-08-27 15:59:12 +08:00
const ON_FOR_TO_STRING = ({ all }, { forToString }) =>
forToString ? all !== false : all === true;
const OFF_FOR_TO_STRING = ({ all }, { forToString }) =>
forToString ? all === true : all !== false;
/** @type {Record<string, (options: Object, context: { forToString: boolean, cached: boolean, runtime: boolean }, compilation: Compilation) => any>} */
const DEFAULTS = {
context: (options, context, compilation) => compilation.compiler.context,
requestShortener: (options, context, compilation) =>
compilation.compiler.context === options.context
? compilation.requestShortener
: new RequestShortener(options.context, compilation.compiler.root),
performance: NORMAL_ON,
hash: NORMAL_ON,
env: NORMAL_OFF,
version: NORMAL_ON,
timings: NORMAL_ON,
builtAt: NORMAL_ON,
assets: NORMAL_ON,
entrypoints: NORMAL_ON,
chunkGroups: OFF_FOR_TO_STRING,
chunks: OFF_FOR_TO_STRING,
2018-12-22 20:19:13 +08:00
chunkRelations: OFF_FOR_TO_STRING,
2020-09-02 20:09:29 +08:00
chunkModules: ({ all, modules }) => {
if (all === false) return false;
if (all === true) return true;
if (modules) return false;
return true;
},
2020-09-02 00:08:09 +08:00
dependentModules: OFF_FOR_TO_STRING,
chunkOrigins: OFF_FOR_TO_STRING,
ids: OFF_FOR_TO_STRING,
2020-09-02 00:08:09 +08:00
modules: ({ all, chunks, chunkModules }, { forToString }) => {
if (all === false) return false;
if (all === true) return true;
2020-09-02 00:08:09 +08:00
if (forToString && chunks && chunkModules) return false;
return true;
},
nestedModules: OFF_FOR_TO_STRING,
2020-09-02 00:08:09 +08:00
groupModulesByType: ON_FOR_TO_STRING,
groupModulesByCacheStatus: ON_FOR_TO_STRING,
groupModulesByAttributes: ON_FOR_TO_STRING,
groupModulesByPath: ON_FOR_TO_STRING,
groupModulesByExtension: ON_FOR_TO_STRING,
modulesSpace: (o, { forToString }) => (forToString ? 15 : Infinity),
chunkModulesSpace: (o, { forToString }) => (forToString ? 10 : Infinity),
nestedModulesSpace: (o, { forToString }) => (forToString ? 10 : Infinity),
relatedAssets: OFF_FOR_TO_STRING,
groupAssetsByEmitStatus: ON_FOR_TO_STRING,
2020-08-27 15:59:12 +08:00
groupAssetsByInfo: ON_FOR_TO_STRING,
groupAssetsByPath: ON_FOR_TO_STRING,
groupAssetsByExtension: ON_FOR_TO_STRING,
groupAssetsByChunk: ON_FOR_TO_STRING,
assetsSpace: (o, { forToString }) => (forToString ? 15 : Infinity),
orphanModules: OFF_FOR_TO_STRING,
runtimeModules: ({ all }, { forToString, runtime }) =>
runtime !== undefined
? runtime
: forToString
? all === true
: all !== false,
2020-09-02 00:08:09 +08:00
cachedModules: ({ all }, { forToString, cached }) =>
cached !== undefined ? cached : forToString ? all === true : all !== false,
moduleAssets: OFF_FOR_TO_STRING,
depth: OFF_FOR_TO_STRING,
2019-07-25 21:42:42 +08:00
cachedAssets: OFF_FOR_TO_STRING,
reasons: OFF_FOR_TO_STRING,
usedExports: OFF_FOR_TO_STRING,
providedExports: OFF_FOR_TO_STRING,
optimizationBailout: OFF_FOR_TO_STRING,
children: OFF_FOR_TO_STRING,
source: NORMAL_OFF,
moduleTrace: NORMAL_ON,
errors: NORMAL_ON,
errorDetails: OFF_FOR_TO_STRING,
errorStack: OFF_FOR_TO_STRING,
warnings: NORMAL_ON,
publicPath: OFF_FOR_TO_STRING,
2019-07-24 16:51:04 +08:00
logging: ({ all }, { forToString }) =>
2020-03-29 06:10:15 +08:00
forToString && all !== false ? "info" : false,
2019-07-24 16:51:04 +08:00
loggingDebug: () => [],
loggingTrace: OFF_FOR_TO_STRING,
excludeModules: () => [],
excludeAssets: () => [],
modulesSort: () => "depth",
chunkModulesSort: () => "name",
nestedModulesSort: () => false,
chunksSort: () => false,
assetsSort: () => "name",
outputPath: OFF_FOR_TO_STRING,
colors: () => false
};
2019-07-24 16:51:04 +08:00
const normalizeFilter = item => {
if (typeof item === "string") {
const regExp = new RegExp(
`[\\\\/]${item.replace(
// eslint-disable-next-line no-useless-escape
/[-[\]{}()*+?.\\^$|]/g,
"\\$&"
)}([\\\\/]|$|!|\\?)`
);
return ident => regExp.test(ident);
}
if (item && typeof item === "object" && typeof item.test === "function") {
return ident => item.test(ident);
}
if (typeof item === "function") {
return item;
}
if (typeof item === "boolean") {
return () => item;
}
};
const NORMALIZER = {
excludeModules: value => {
if (!Array.isArray(value)) {
value = value ? [value] : [];
}
2019-07-24 16:51:04 +08:00
return value.map(normalizeFilter);
},
excludeAssets: value => {
if (!Array.isArray(value)) {
value = value ? [value] : [];
}
2019-07-24 16:51:04 +08:00
return value.map(normalizeFilter);
},
warningsFilter: value => {
if (!Array.isArray(value)) {
value = value ? [value] : [];
}
return value.map(filter => {
if (typeof filter === "string") {
return (warning, warningString) => warningString.includes(filter);
}
if (filter instanceof RegExp) {
return (warning, warningString) => filter.test(warningString);
}
if (typeof filter === "function") {
return filter;
}
throw new Error(
`Can only filter warnings with Strings or RegExps. (Given: ${filter})`
);
});
2019-07-24 16:51:04 +08:00
},
logging: value => {
if (value === true) value = "log";
return value;
},
loggingDebug: value => {
if (!Array.isArray(value)) {
value = value ? [value] : [];
}
return value.map(normalizeFilter);
}
};
class DefaultStatsPresetPlugin {
/**
2020-04-23 16:48:36 +08:00
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply(compiler) {
compiler.hooks.compilation.tap("DefaultStatsPresetPlugin", compilation => {
for (const key of Object.keys(NAMED_PRESETS)) {
const defaults = NAMED_PRESETS[key];
compilation.hooks.statsPreset
.for(key)
.tap("DefaultStatsPresetPlugin", (options, context) => {
applyDefaults(options, defaults);
});
}
compilation.hooks.statsNormalize.tap(
"DefaultStatsPresetPlugin",
(options, context) => {
for (const key of Object.keys(DEFAULTS)) {
if (options[key] === undefined)
options[key] = DEFAULTS[key](options, context, compilation);
}
for (const key of Object.keys(NORMALIZER)) {
options[key] = NORMALIZER[key](options[key]);
}
}
);
});
}
}
module.exports = DefaultStatsPresetPlugin;