webpack/lib/DefinePlugin.js

690 lines
19 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
"use strict";
const {
JAVASCRIPT_MODULE_TYPE_AUTO,
JAVASCRIPT_MODULE_TYPE_ESM,
JAVASCRIPT_MODULE_TYPE_DYNAMIC
} = require("./ModuleTypeConstants");
2023-04-01 00:45:36 +08:00
const RuntimeGlobals = require("./RuntimeGlobals");
const WebpackError = require("./WebpackError");
const ConstDependency = require("./dependencies/ConstDependency");
const BasicEvaluatedExpression = require("./javascript/BasicEvaluatedExpression");
2018-07-03 16:24:29 +08:00
const {
evaluateToString,
2018-11-06 02:03:12 +08:00
toConstantDependency
} = require("./javascript/JavascriptParserHelpers");
const createHash = require("./util/createHash");
/** @typedef {import("estree").Expression} Expression */
/** @typedef {import("./Compiler")} Compiler */
2024-01-27 00:17:45 +08:00
/** @typedef {import("./Module").BuildInfo} BuildInfo */
/** @typedef {import("./NormalModule")} NormalModule */
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
2019-10-11 21:46:57 +08:00
/** @typedef {import("./javascript/JavascriptParser")} JavascriptParser */
2024-04-13 02:40:28 +08:00
/** @typedef {import("./javascript/JavascriptParser").DestructuringAssignmentProperty} DestructuringAssignmentProperty */
2024-04-13 02:52:37 +08:00
/** @typedef {import("./javascript/JavascriptParser").Range} Range */
2023-04-24 02:42:05 +08:00
/** @typedef {import("./logging/Logger").Logger} Logger */
/** @typedef {null|undefined|RegExp|Function|string|number|boolean|bigint|undefined} CodeValuePrimitive */
/** @typedef {RecursiveArrayOrRecord<CodeValuePrimitive|RuntimeValue>} CodeValue */
/**
2024-06-11 21:09:50 +08:00
* @typedef {object} RuntimeValueOptions
* @property {string[]=} fileDependencies
* @property {string[]=} contextDependencies
* @property {string[]=} missingDependencies
* @property {string[]=} buildDependencies
* @property {string|function(): string=} version
*/
class RuntimeValue {
/**
* @param {function({ module: NormalModule, key: string, readonly version: string | undefined }): CodeValuePrimitive} fn generator function
* @param {true | string[] | RuntimeValueOptions=} options options
*/
constructor(fn, options) {
this.fn = fn;
if (Array.isArray(options)) {
options = {
fileDependencies: options
};
}
this.options = options || {};
}
get fileDependencies() {
return this.options === true ? true : this.options.fileDependencies;
}
/**
* @param {JavascriptParser} parser the parser
* @param {Map<string, string | Set<string>>} valueCacheVersions valueCacheVersions
* @param {string} key the defined key
* @returns {CodeValuePrimitive} code
*/
exec(parser, valueCacheVersions, key) {
2024-01-27 00:17:45 +08:00
const buildInfo = /** @type {BuildInfo} */ (parser.state.module.buildInfo);
if (this.options === true) {
buildInfo.cacheable = false;
} else {
if (this.options.fileDependencies) {
for (const dep of this.options.fileDependencies) {
buildInfo.fileDependencies.add(dep);
}
}
if (this.options.contextDependencies) {
for (const dep of this.options.contextDependencies) {
buildInfo.contextDependencies.add(dep);
}
}
if (this.options.missingDependencies) {
for (const dep of this.options.missingDependencies) {
buildInfo.missingDependencies.add(dep);
}
}
if (this.options.buildDependencies) {
for (const dep of this.options.buildDependencies) {
buildInfo.buildDependencies.add(dep);
}
}
}
return this.fn({
module: parser.state.module,
key,
get version() {
2021-05-11 15:31:46 +08:00
return /** @type {string} */ (
valueCacheVersions.get(VALUE_DEP_PREFIX + key)
);
}
});
}
getCacheVersion() {
return this.options === true
? undefined
: (typeof this.options.version === "function"
? this.options.version()
: this.options.version) || "unset";
}
}
2024-04-13 02:40:28 +08:00
/**
* @param {Set<DestructuringAssignmentProperty> | undefined} properties properties
* @returns {Set<string> | undefined} used keys
*/
function getObjKeys(properties) {
2024-08-02 02:36:27 +08:00
if (!properties) return;
2024-04-13 02:40:28 +08:00
return new Set([...properties].map(p => p.id));
}
/**
* @param {any[]|{[k: string]: any}} obj obj
* @param {JavascriptParser} parser Parser
* @param {Map<string, string | Set<string>>} valueCacheVersions valueCacheVersions
* @param {string} key the defined key
* @param {RuntimeTemplate} runtimeTemplate the runtime template
2023-04-24 02:42:05 +08:00
* @param {Logger} logger the logger object
2020-09-01 17:06:14 +08:00
* @param {boolean|undefined|null=} asiSafe asi safe (undefined: unknown, null: unneeded)
* @param {Set<string>|undefined=} objKeys used keys
* @returns {string} code converted to string that evaluates
*/
const stringifyObj = (
obj,
parser,
valueCacheVersions,
key,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
asiSafe,
objKeys
) => {
let code;
2024-07-31 04:09:42 +08:00
const arr = Array.isArray(obj);
if (arr) {
2024-01-27 00:17:45 +08:00
code = `[${
/** @type {any[]} */ (obj)
.map(code =>
toCode(
code,
parser,
valueCacheVersions,
key,
runtimeTemplate,
logger,
null
)
2023-04-24 02:42:05 +08:00
)
2024-01-27 00:17:45 +08:00
.join(",")
}]`;
} else {
let keys = Object.keys(obj);
if (objKeys) {
2024-08-02 02:36:27 +08:00
keys = objKeys.size === 0 ? [] : keys.filter(k => objKeys.has(k));
}
code = `{${keys
2018-02-25 09:00:20 +08:00
.map(key => {
2024-01-27 00:17:45 +08:00
const code = /** @type {{[k: string]: any}} */ (obj)[key];
2024-07-31 10:39:30 +08:00
return `${JSON.stringify(key)}:${toCode(
code,
parser,
valueCacheVersions,
key,
runtimeTemplate,
logger,
null
)}`;
2018-02-25 09:00:20 +08:00
})
.join(",")}}`;
}
switch (asiSafe) {
case null:
return code;
case true:
return arr ? code : `(${code})`;
case false:
return arr ? `;${code}` : `;(${code})`;
default:
return `/*#__PURE__*/Object(${code})`;
}
2017-11-08 18:32:05 +08:00
};
2018-05-20 15:32:59 +08:00
/**
* Convert code to a string that evaluates
2018-06-23 05:17:55 +08:00
* @param {CodeValue} code Code to evaluate
2018-07-17 17:32:15 +08:00
* @param {JavascriptParser} parser Parser
* @param {Map<string, string | Set<string>>} valueCacheVersions valueCacheVersions
* @param {string} key the defined key
* @param {RuntimeTemplate} runtimeTemplate the runtime template
2023-04-24 02:42:05 +08:00
* @param {Logger} logger the logger object
2020-09-01 17:06:14 +08:00
* @param {boolean|undefined|null=} asiSafe asi safe (undefined: unknown, null: unneeded)
* @param {Set<string>|undefined=} objKeys used keys
2018-05-20 15:32:59 +08:00
* @returns {string} code converted to string that evaluates
*/
const toCode = (
code,
parser,
valueCacheVersions,
key,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
asiSafe,
objKeys
) => {
2023-04-24 02:42:05 +08:00
const transformToCode = () => {
if (code === null) {
return "null";
}
if (code === undefined) {
return "undefined";
}
if (Object.is(code, -0)) {
return "-0";
}
if (code instanceof RuntimeValue) {
return toCode(
code.exec(parser, valueCacheVersions, key),
parser,
valueCacheVersions,
key,
runtimeTemplate,
logger,
asiSafe
);
}
if (code instanceof RegExp && code.toString) {
return code.toString();
}
if (typeof code === "function" && code.toString) {
2024-07-31 10:39:30 +08:00
return `(${code.toString()})`;
2023-04-24 02:42:05 +08:00
}
if (typeof code === "object") {
return stringifyObj(
code,
parser,
valueCacheVersions,
key,
runtimeTemplate,
logger,
asiSafe,
objKeys
);
}
if (typeof code === "bigint") {
return runtimeTemplate.supportsBigIntLiteral()
? `${code}n`
: `BigInt("${code}")`;
}
2024-07-31 10:39:30 +08:00
return `${code}`;
2023-04-24 02:42:05 +08:00
};
const strCode = transformToCode();
logger.debug(`Replaced "${key}" with "${strCode}"`);
2023-04-24 02:42:05 +08:00
return strCode;
2017-11-08 18:32:05 +08:00
};
2024-01-27 00:17:45 +08:00
/**
* @param {CodeValue} code code
* @returns {string | undefined} result
*/
const toCacheVersion = code => {
if (code === null) {
return "null";
}
if (code === undefined) {
return "undefined";
}
if (Object.is(code, -0)) {
return "-0";
}
if (code instanceof RuntimeValue) {
return code.getCacheVersion();
}
if (code instanceof RegExp && code.toString) {
return code.toString();
}
if (typeof code === "function" && code.toString) {
2024-07-31 10:39:30 +08:00
return `(${code.toString()})`;
}
if (typeof code === "object") {
const items = Object.keys(code).map(key => ({
key,
2024-01-27 00:17:45 +08:00
value: toCacheVersion(/** @type {Record<string, any>} */ (code)[key])
}));
2024-08-02 02:36:27 +08:00
if (items.some(({ value }) => value === undefined)) return;
return `{${items.map(({ key, value }) => `${key}: ${value}`).join(", ")}}`;
}
if (typeof code === "bigint") {
return `${code}n`;
}
2024-07-31 10:39:30 +08:00
return `${code}`;
};
const PLUGIN_NAME = "DefinePlugin";
const VALUE_DEP_PREFIX = `webpack/${PLUGIN_NAME} `;
const VALUE_DEP_MAIN = `webpack/${PLUGIN_NAME}_hash`;
const TYPEOF_OPERATOR_REGEXP = /^typeof\s+/;
2024-02-27 23:19:53 +08:00
const WEBPACK_REQUIRE_FUNCTION_REGEXP = new RegExp(
2024-02-28 00:05:14 +08:00
`${RuntimeGlobals.require}\\s*(!?\\.)`
2024-02-27 19:14:15 +08:00
);
2024-02-27 23:19:53 +08:00
const WEBPACK_REQUIRE_IDENTIFIER_REGEXP = new RegExp(RuntimeGlobals.require);
class DefinePlugin {
2018-05-20 15:32:59 +08:00
/**
* Create a new define plugin
2018-07-13 09:06:21 +08:00
* @param {Record<string, CodeValue>} definitions A map of global object definitions
2018-05-20 15:32:59 +08:00
*/
constructor(definitions) {
this.definitions = definitions;
}
2015-07-13 06:20:09 +08:00
/**
* @param {function({ module: NormalModule, key: string, readonly version: string | undefined }): CodeValuePrimitive} fn generator function
* @param {true | string[] | RuntimeValueOptions=} options options
* @returns {RuntimeValue} runtime value
*/
static runtimeValue(fn, options) {
return new RuntimeValue(fn, options);
}
2018-05-20 15:32:59 +08:00
/**
* Apply the plugin
2020-04-23 16:48:36 +08:00
* @param {Compiler} compiler the compiler instance
2018-06-10 10:37:09 +08:00
* @returns {void}
2018-05-20 15:32:59 +08:00
*/
apply(compiler) {
const definitions = this.definitions;
2018-02-25 09:00:20 +08:00
compiler.hooks.compilation.tap(
PLUGIN_NAME,
2018-02-25 09:00:20 +08:00
(compilation, { normalModuleFactory }) => {
2023-04-24 02:42:05 +08:00
const logger = compilation.getLogger("webpack.DefinePlugin");
2018-02-25 09:00:20 +08:00
compilation.dependencyTemplates.set(
ConstDependency,
new ConstDependency.Template()
);
const { runtimeTemplate } = compilation;
2015-07-13 06:20:09 +08:00
const mainHash = createHash(compilation.outputOptions.hashFunction);
mainHash.update(
/** @type {string} */ (
compilation.valueCacheVersions.get(VALUE_DEP_MAIN)
) || ""
2021-05-11 15:31:46 +08:00
);
2018-05-20 15:32:59 +08:00
/**
* Handler
2018-07-17 17:32:15 +08:00
* @param {JavascriptParser} parser Parser
2018-06-10 10:37:09 +08:00
* @returns {void}
2018-05-20 15:32:59 +08:00
*/
2018-02-25 09:00:20 +08:00
const handler = parser => {
const mainValue = compilation.valueCacheVersions.get(VALUE_DEP_MAIN);
parser.hooks.program.tap(PLUGIN_NAME, () => {
2024-01-27 00:17:45 +08:00
const buildInfo = /** @type {BuildInfo} */ (
parser.state.module.buildInfo
);
if (!buildInfo.valueDependencies)
buildInfo.valueDependencies = new Map();
buildInfo.valueDependencies.set(VALUE_DEP_MAIN, mainValue);
});
2024-01-27 00:17:45 +08:00
/**
* @param {string} key key
*/
const addValueDependency = key => {
2024-01-27 00:17:45 +08:00
const buildInfo = /** @type {BuildInfo} */ (
parser.state.module.buildInfo
);
buildInfo.valueDependencies.set(
VALUE_DEP_PREFIX + key,
compilation.valueCacheVersions.get(VALUE_DEP_PREFIX + key)
);
};
2021-05-11 15:31:46 +08:00
const withValueDependency =
(key, fn) =>
(...args) => {
addValueDependency(key);
return fn(...args);
};
2018-06-10 10:37:09 +08:00
/**
* Walk definitions
2024-01-27 00:17:45 +08:00
* @param {Record<string, CodeValue>} definitions Definitions map
2018-06-10 10:37:09 +08:00
* @param {string} prefix Prefix string
* @returns {void}
*/
2018-02-25 09:00:20 +08:00
const walkDefinitions = (definitions, prefix) => {
2024-08-02 02:36:27 +08:00
for (const key of Object.keys(definitions)) {
2018-02-25 09:00:20 +08:00
const code = definitions[key];
if (
code &&
typeof code === "object" &&
!(code instanceof RuntimeValue) &&
2018-02-25 09:00:20 +08:00
!(code instanceof RegExp)
) {
2024-01-27 00:17:45 +08:00
walkDefinitions(
/** @type {Record<string, CodeValue>} */ (code),
2024-07-31 10:39:30 +08:00
`${prefix + key}.`
2024-01-27 00:17:45 +08:00
);
2018-02-25 09:00:20 +08:00
applyObjectDefine(prefix + key, code);
2024-08-02 02:36:27 +08:00
continue;
2018-02-25 09:00:20 +08:00
}
applyDefineKey(prefix, key);
applyDefine(prefix + key, code);
2024-08-02 02:36:27 +08:00
}
2018-02-25 09:00:20 +08:00
};
2015-07-13 06:20:09 +08:00
2018-05-20 15:32:59 +08:00
/**
* Apply define key
* @param {string} prefix Prefix
* @param {string} key Key
2018-06-10 10:37:09 +08:00
* @returns {void}
2018-05-20 15:32:59 +08:00
*/
2018-02-25 09:00:20 +08:00
const applyDefineKey = (prefix, key) => {
const splittedKey = key.split(".");
2024-08-02 02:36:27 +08:00
for (const [i, _] of splittedKey.slice(1).entries()) {
2018-02-25 09:00:20 +08:00
const fullKey = prefix + splittedKey.slice(0, i + 1).join(".");
parser.hooks.canRename.for(fullKey).tap(PLUGIN_NAME, () => {
addValueDependency(key);
return true;
});
2024-08-02 02:36:27 +08:00
}
2018-02-25 09:00:20 +08:00
};
2018-05-20 15:32:59 +08:00
/**
* Apply Code
* @param {string} key Key
2018-06-23 05:17:55 +08:00
* @param {CodeValue} code Code
2018-06-10 10:37:09 +08:00
* @returns {void}
2018-05-20 15:32:59 +08:00
*/
2018-02-25 09:00:20 +08:00
const applyDefine = (key, code) => {
const originalKey = key;
const isTypeof = TYPEOF_OPERATOR_REGEXP.test(key);
if (isTypeof) key = key.replace(TYPEOF_OPERATOR_REGEXP, "");
2018-02-25 09:00:20 +08:00
let recurse = false;
let recurseTypeof = false;
if (!isTypeof) {
parser.hooks.canRename.for(key).tap(PLUGIN_NAME, () => {
addValueDependency(originalKey);
return true;
});
2018-02-25 09:00:20 +08:00
parser.hooks.evaluateIdentifier
.for(key)
.tap(PLUGIN_NAME, expr => {
2018-02-25 09:00:20 +08:00
/**
* this is needed in case there is a recursion in the DefinePlugin
* to prevent an endless recursion
* e.g.: new DefinePlugin({
* "a": "b",
* "b": "a"
* });
*/
if (recurse) return;
addValueDependency(originalKey);
2018-02-25 09:00:20 +08:00
recurse = true;
const res = parser.evaluate(
toCode(
code,
parser,
compilation.valueCacheVersions,
key,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
null
)
);
2018-02-25 09:00:20 +08:00
recurse = false;
2024-01-27 00:17:45 +08:00
res.setRange(/** @type {Range} */ (expr.range));
2018-02-25 09:00:20 +08:00
return res;
});
parser.hooks.expression.for(key).tap(PLUGIN_NAME, expr => {
addValueDependency(originalKey);
let strCode = toCode(
code,
parser,
compilation.valueCacheVersions,
originalKey,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
2024-01-27 00:17:45 +08:00
!parser.isAsiPosition(/** @type {Range} */ (expr.range)[0]),
2024-06-06 01:15:03 +08:00
null
);
if (parser.scope.inShorthand) {
2024-07-31 10:39:30 +08:00
strCode = `${parser.scope.inShorthand}:${strCode}`;
}
if (WEBPACK_REQUIRE_FUNCTION_REGEXP.test(strCode)) {
2018-11-06 02:03:12 +08:00
return toConstantDependency(parser, strCode, [
RuntimeGlobals.require
])(expr);
} else if (WEBPACK_REQUIRE_IDENTIFIER_REGEXP.test(strCode)) {
return toConstantDependency(parser, strCode, [
RuntimeGlobals.requireScope
])(expr);
}
2024-07-31 04:21:27 +08:00
return toConstantDependency(parser, strCode)(expr);
});
2018-02-25 09:00:20 +08:00
}
parser.hooks.evaluateTypeof.for(key).tap(PLUGIN_NAME, expr => {
/**
* this is needed in case there is a recursion in the DefinePlugin
* to prevent an endless recursion
* e.g.: new DefinePlugin({
2018-02-26 10:49:41 +08:00
* "typeof a": "typeof b",
2018-02-25 09:00:20 +08:00
* "typeof b": "typeof a"
* });
*/
2018-02-25 09:00:20 +08:00
if (recurseTypeof) return;
recurseTypeof = true;
addValueDependency(originalKey);
const codeCode = toCode(
code,
parser,
compilation.valueCacheVersions,
originalKey,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
null
);
2024-07-31 10:39:30 +08:00
const typeofCode = isTypeof ? codeCode : `typeof (${codeCode})`;
2018-02-25 09:00:20 +08:00
const res = parser.evaluate(typeofCode);
recurseTypeof = false;
2024-01-27 00:17:45 +08:00
res.setRange(/** @type {Range} */ (expr.range));
return res;
});
parser.hooks.typeof.for(key).tap(PLUGIN_NAME, expr => {
addValueDependency(originalKey);
const codeCode = toCode(
code,
parser,
compilation.valueCacheVersions,
originalKey,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
null
);
2024-07-31 10:39:30 +08:00
const typeofCode = isTypeof ? codeCode : `typeof (${codeCode})`;
2018-02-25 09:00:20 +08:00
const res = parser.evaluate(typeofCode);
if (!res.isString()) return;
2018-07-03 16:24:29 +08:00
return toConstantDependency(
2018-02-25 09:00:20 +08:00
parser,
JSON.stringify(res.string)
).bind(parser)(expr);
});
};
2018-05-20 15:32:59 +08:00
/**
* Apply Object
* @param {string} key Key
2024-06-11 21:09:50 +08:00
* @param {object} obj Object
2018-06-10 10:37:09 +08:00
* @returns {void}
2018-05-20 15:32:59 +08:00
*/
2018-02-25 09:00:20 +08:00
const applyObjectDefine = (key, obj) => {
parser.hooks.canRename.for(key).tap(PLUGIN_NAME, () => {
addValueDependency(key);
return true;
});
parser.hooks.evaluateIdentifier.for(key).tap(PLUGIN_NAME, expr => {
addValueDependency(key);
return new BasicEvaluatedExpression()
.setTruthy()
.setSideEffects(false)
2024-01-27 00:17:45 +08:00
.setRange(/** @type {Range} */ (expr.range));
});
2018-02-25 09:00:20 +08:00
parser.hooks.evaluateTypeof
.for(key)
.tap(
PLUGIN_NAME,
withValueDependency(key, evaluateToString("object"))
);
parser.hooks.expression.for(key).tap(PLUGIN_NAME, expr => {
addValueDependency(key);
let strCode = stringifyObj(
obj,
parser,
compilation.valueCacheVersions,
key,
runtimeTemplate,
2023-04-24 02:42:05 +08:00
logger,
2024-01-27 00:17:45 +08:00
!parser.isAsiPosition(/** @type {Range} */ (expr.range)[0]),
2024-04-13 02:40:28 +08:00
getObjKeys(parser.destructuringAssignmentPropertiesFor(expr))
);
if (parser.scope.inShorthand) {
2024-07-31 10:39:30 +08:00
strCode = `${parser.scope.inShorthand}:${strCode}`;
}
if (WEBPACK_REQUIRE_FUNCTION_REGEXP.test(strCode)) {
2018-11-06 02:03:12 +08:00
return toConstantDependency(parser, strCode, [
RuntimeGlobals.require
])(expr);
} else if (WEBPACK_REQUIRE_IDENTIFIER_REGEXP.test(strCode)) {
return toConstantDependency(parser, strCode, [
RuntimeGlobals.requireScope
])(expr);
}
2024-07-31 04:21:27 +08:00
return toConstantDependency(parser, strCode)(expr);
});
2018-02-25 09:00:20 +08:00
parser.hooks.typeof
.for(key)
.tap(
PLUGIN_NAME,
withValueDependency(
key,
toConstantDependency(parser, JSON.stringify("object"))
)
2018-02-25 09:00:20 +08:00
);
};
2017-11-08 18:32:05 +08:00
2018-02-25 09:00:20 +08:00
walkDefinitions(definitions, "");
};
2018-02-25 09:00:20 +08:00
normalModuleFactory.hooks.parser
.for(JAVASCRIPT_MODULE_TYPE_AUTO)
.tap(PLUGIN_NAME, handler);
2018-02-25 09:00:20 +08:00
normalModuleFactory.hooks.parser
.for(JAVASCRIPT_MODULE_TYPE_DYNAMIC)
.tap(PLUGIN_NAME, handler);
2018-02-25 09:00:20 +08:00
normalModuleFactory.hooks.parser
.for(JAVASCRIPT_MODULE_TYPE_ESM)
.tap(PLUGIN_NAME, handler);
/**
* Walk definitions
2024-01-27 00:17:45 +08:00
* @param {Record<string, CodeValue>} definitions Definitions map
* @param {string} prefix Prefix string
* @returns {void}
*/
const walkDefinitionsForValues = (definitions, prefix) => {
2024-08-02 02:36:27 +08:00
for (const key of Object.keys(definitions)) {
const code = definitions[key];
const version = toCacheVersion(code);
const name = VALUE_DEP_PREFIX + prefix + key;
2024-07-31 10:39:30 +08:00
mainHash.update(`|${prefix}${key}`);
const oldVersion = compilation.valueCacheVersions.get(name);
if (oldVersion === undefined) {
compilation.valueCacheVersions.set(name, version);
} else if (oldVersion !== version) {
const warning = new WebpackError(
`${PLUGIN_NAME}\nConflicting values for '${prefix + key}'`
);
warning.details = `'${oldVersion}' !== '${version}'`;
warning.hideStack = true;
compilation.warnings.push(warning);
}
if (
code &&
typeof code === "object" &&
!(code instanceof RuntimeValue) &&
!(code instanceof RegExp)
) {
2024-01-27 00:17:45 +08:00
walkDefinitionsForValues(
/** @type {Record<string, CodeValue>} */ (code),
2024-07-31 10:39:30 +08:00
`${prefix + key}.`
2024-01-27 00:17:45 +08:00
);
}
2024-08-02 02:36:27 +08:00
}
};
walkDefinitionsForValues(definitions, "");
compilation.valueCacheVersions.set(
VALUE_DEP_MAIN,
/** @type {string} */ (mainHash.digest("hex").slice(0, 8))
);
2018-02-25 09:00:20 +08:00
}
);
}
}
module.exports = DefinePlugin;