2021-12-15 15:34:31 +08:00
|
|
|
|
/*
|
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
|
Author Ivan Kopeykin @vankop
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
2024-06-30 18:13:56 +08:00
|
|
|
|
const { cssExportConvention } = require("../util/conventions");
|
2024-02-22 19:58:59 +08:00
|
|
|
|
const createHash = require("../util/createHash");
|
|
|
|
|
const { makePathsRelative } = require("../util/identifier");
|
2021-12-15 15:34:31 +08:00
|
|
|
|
const makeSerializable = require("../util/makeSerializable");
|
|
|
|
|
const NullDependency = require("./NullDependency");
|
|
|
|
|
|
|
|
|
|
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
|
2024-02-22 19:58:59 +08:00
|
|
|
|
/** @typedef {import("../../declarations/WebpackOptions").CssGeneratorExportsConvention} CssGeneratorExportsConvention */
|
|
|
|
|
/** @typedef {import("../../declarations/WebpackOptions").CssGeneratorLocalIdentName} CssGeneratorLocalIdentName */
|
|
|
|
|
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
|
|
|
|
/** @typedef {import("../CssModule")} CssModule */
|
2021-12-15 15:34:31 +08:00
|
|
|
|
/** @typedef {import("../Dependency")} Dependency */
|
|
|
|
|
/** @typedef {import("../Dependency").ExportsSpec} ExportsSpec */
|
2024-06-30 18:13:56 +08:00
|
|
|
|
/** @typedef {import("../Dependency").UpdateHashContext} UpdateHashContext */
|
2021-12-15 15:34:31 +08:00
|
|
|
|
/** @typedef {import("../DependencyTemplate").CssDependencyTemplateContext} DependencyTemplateContext */
|
|
|
|
|
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
2024-10-24 04:30:31 +08:00
|
|
|
|
/** @typedef {import("../NormalModuleFactory").ResourceDataWithData} ResourceDataWithData */
|
2024-02-22 19:58:59 +08:00
|
|
|
|
/** @typedef {import("../RuntimeTemplate")} RuntimeTemplate */
|
|
|
|
|
/** @typedef {import("../css/CssGenerator")} CssGenerator */
|
2023-05-22 04:31:30 +08:00
|
|
|
|
/** @typedef {import("../css/CssParser").Range} Range */
|
2023-04-12 03:22:51 +08:00
|
|
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
|
|
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
2024-06-30 18:13:56 +08:00
|
|
|
|
/** @typedef {import("../util/Hash")} Hash */
|
2024-10-24 04:30:31 +08:00
|
|
|
|
/** @typedef {import("../util/createHash").Algorithm} Algorithm */
|
2021-12-15 15:34:31 +08:00
|
|
|
|
|
2024-02-22 19:58:59 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} local css local
|
|
|
|
|
* @param {CssModule} module module
|
|
|
|
|
* @param {ChunkGraph} chunkGraph chunk graph
|
|
|
|
|
* @param {RuntimeTemplate} runtimeTemplate runtime template
|
|
|
|
|
* @returns {string} local ident
|
|
|
|
|
*/
|
|
|
|
|
const getLocalIdent = (local, module, chunkGraph, runtimeTemplate) => {
|
2024-03-18 23:28:40 +08:00
|
|
|
|
const localIdentName =
|
2024-11-15 23:59:14 +08:00
|
|
|
|
/** @type {CssGenerator} */
|
2024-03-18 23:28:40 +08:00
|
|
|
|
(module.generator).localIdentName;
|
2024-02-22 19:58:59 +08:00
|
|
|
|
const relativeResourcePath = makePathsRelative(
|
2024-10-24 04:30:31 +08:00
|
|
|
|
/** @type {string} */
|
|
|
|
|
(module.context),
|
2024-11-02 01:15:02 +08:00
|
|
|
|
module.matchResource || module.resource,
|
|
|
|
|
runtimeTemplate.compilation.compiler.root
|
2024-02-22 19:58:59 +08:00
|
|
|
|
);
|
|
|
|
|
const { hashFunction, hashDigest, hashDigestLength, hashSalt, uniqueName } =
|
|
|
|
|
runtimeTemplate.outputOptions;
|
2024-10-24 04:30:31 +08:00
|
|
|
|
const hash = createHash(/** @type {Algorithm} */ (hashFunction));
|
2024-11-20 09:31:41 +08:00
|
|
|
|
|
2024-02-22 19:58:59 +08:00
|
|
|
|
if (hashSalt) {
|
|
|
|
|
hash.update(hashSalt);
|
|
|
|
|
}
|
2024-11-20 09:31:41 +08:00
|
|
|
|
|
2024-02-22 19:58:59 +08:00
|
|
|
|
hash.update(relativeResourcePath);
|
2024-11-20 09:31:41 +08:00
|
|
|
|
|
2024-02-22 19:58:59 +08:00
|
|
|
|
if (!/\[local\]/.test(localIdentName)) {
|
|
|
|
|
hash.update(local);
|
|
|
|
|
}
|
2024-11-20 09:31:41 +08:00
|
|
|
|
|
|
|
|
|
const localIdentHash =
|
|
|
|
|
/** @type {string} */
|
2024-11-26 01:41:48 +08:00
|
|
|
|
(hash.digest(hashDigest)).slice(0, hashDigestLength);
|
2024-11-20 09:31:41 +08:00
|
|
|
|
|
2024-02-22 19:58:59 +08:00
|
|
|
|
return runtimeTemplate.compilation
|
|
|
|
|
.getPath(localIdentName, {
|
|
|
|
|
filename: relativeResourcePath,
|
|
|
|
|
hash: localIdentHash,
|
|
|
|
|
contentHash: localIdentHash,
|
|
|
|
|
chunkGraph,
|
|
|
|
|
module
|
|
|
|
|
})
|
|
|
|
|
.replace(/\[local\]/g, local)
|
2024-11-26 01:41:48 +08:00
|
|
|
|
.replace(/\[uniqueName\]/g, /** @type {string} */ (uniqueName))
|
|
|
|
|
.replace(/^((-?[0-9])|--)/, "_$1");
|
2024-02-22 19:58:59 +08:00
|
|
|
|
};
|
|
|
|
|
|
2024-11-26 01:41:48 +08:00
|
|
|
|
const CONTAINS_ESCAPE = /\\/;
|
|
|
|
|
|
2024-11-12 08:21:00 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} str string
|
2024-11-26 01:41:48 +08:00
|
|
|
|
* @returns {[string, number] | undefined} hex
|
2024-11-12 08:21:00 +08:00
|
|
|
|
*/
|
2024-11-26 01:41:48 +08:00
|
|
|
|
const gobbleHex = str => {
|
|
|
|
|
const lower = str.toLowerCase();
|
|
|
|
|
let hex = "";
|
|
|
|
|
let spaceTerminated = false;
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < 6 && lower[i] !== undefined; i++) {
|
|
|
|
|
const code = lower.charCodeAt(i);
|
|
|
|
|
// check to see if we are dealing with a valid hex char [a-f|0-9]
|
|
|
|
|
const valid = (code >= 97 && code <= 102) || (code >= 48 && code <= 57);
|
|
|
|
|
// https://drafts.csswg.org/css-syntax/#consume-escaped-code-point
|
|
|
|
|
spaceTerminated = code === 32;
|
|
|
|
|
if (!valid) break;
|
|
|
|
|
hex += lower[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hex.length === 0) return undefined;
|
|
|
|
|
|
|
|
|
|
const codePoint = Number.parseInt(hex, 16);
|
|
|
|
|
const isSurrogate = codePoint >= 0xd800 && codePoint <= 0xdfff;
|
|
|
|
|
|
|
|
|
|
// Add special case for
|
|
|
|
|
// "If this number is zero, or is for a surrogate, or is greater than the maximum allowed code point"
|
|
|
|
|
// https://drafts.csswg.org/css-syntax/#maximum-allowed-code-point
|
|
|
|
|
if (isSurrogate || codePoint === 0x0000 || codePoint > 0x10ffff) {
|
|
|
|
|
return ["\uFFFD", hex.length + (spaceTerminated ? 1 : 0)];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
String.fromCodePoint(codePoint),
|
|
|
|
|
hex.length + (spaceTerminated ? 1 : 0)
|
|
|
|
|
];
|
2024-11-12 08:21:00 +08:00
|
|
|
|
};
|
|
|
|
|
|
2024-11-26 01:41:48 +08:00
|
|
|
|
// eslint-disable-next-line no-useless-escape
|
|
|
|
|
const regexSingleEscape = /[ -,.\/:-@[\]\^`{-~]/;
|
|
|
|
|
const regexExcessiveSpaces =
|
|
|
|
|
/(^|\\+)?(\\[A-F0-9]{1,6})\u0020(?![a-fA-F0-9\u0020])/g;
|
|
|
|
|
|
2021-12-15 15:34:31 +08:00
|
|
|
|
class CssLocalIdentifierDependency extends NullDependency {
|
|
|
|
|
/**
|
|
|
|
|
* @param {string} name name
|
2023-05-22 04:31:30 +08:00
|
|
|
|
* @param {Range} range range
|
2021-12-17 03:42:44 +08:00
|
|
|
|
* @param {string=} prefix prefix
|
2021-12-15 15:34:31 +08:00
|
|
|
|
*/
|
2021-12-17 03:42:44 +08:00
|
|
|
|
constructor(name, range, prefix = "") {
|
2021-12-15 15:34:31 +08:00
|
|
|
|
super();
|
2024-11-26 01:41:48 +08:00
|
|
|
|
this.name = CssLocalIdentifierDependency.unescapeIdentifier(name);
|
2021-12-15 15:34:31 +08:00
|
|
|
|
this.range = range;
|
2021-12-17 03:42:44 +08:00
|
|
|
|
this.prefix = prefix;
|
2024-11-14 00:16:17 +08:00
|
|
|
|
this._conventionNames = undefined;
|
|
|
|
|
this._hashUpdate = undefined;
|
2021-12-15 15:34:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 01:41:48 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} str string
|
|
|
|
|
* @returns {string} unescaped string
|
|
|
|
|
*/
|
|
|
|
|
static unescapeIdentifier(str) {
|
|
|
|
|
const needToProcess = CONTAINS_ESCAPE.test(str);
|
|
|
|
|
if (!needToProcess) return str;
|
|
|
|
|
let ret = "";
|
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
|
if (str[i] === "\\") {
|
|
|
|
|
const gobbled = gobbleHex(str.slice(i + 1, i + 7));
|
|
|
|
|
if (gobbled !== undefined) {
|
|
|
|
|
ret += gobbled[0];
|
|
|
|
|
i += gobbled[1];
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// Retain a pair of \\ if double escaped `\\\\`
|
|
|
|
|
// https://github.com/postcss/postcss-selector-parser/commit/268c9a7656fb53f543dc620aa5b73a30ec3ff20e
|
|
|
|
|
if (str[i + 1] === "\\") {
|
|
|
|
|
ret += "\\";
|
|
|
|
|
i += 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// if \\ is at the end of the string retain it
|
|
|
|
|
// https://github.com/postcss/postcss-selector-parser/commit/01a6b346e3612ce1ab20219acc26abdc259ccefb
|
|
|
|
|
if (str.length === i + 1) {
|
|
|
|
|
ret += str[i];
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
ret += str[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param {string} str string
|
|
|
|
|
* @returns {string} escaped identifier
|
|
|
|
|
*/
|
|
|
|
|
static escapeIdentifier(str) {
|
|
|
|
|
let output = "";
|
|
|
|
|
let counter = 0;
|
|
|
|
|
|
|
|
|
|
while (counter < str.length) {
|
|
|
|
|
const character = str.charAt(counter++);
|
|
|
|
|
|
|
|
|
|
let value;
|
|
|
|
|
|
|
|
|
|
if (/[\t\n\f\r\u000B]/.test(character)) {
|
|
|
|
|
const codePoint = character.charCodeAt(0);
|
|
|
|
|
|
|
|
|
|
value = `\\${codePoint.toString(16).toUpperCase()} `;
|
|
|
|
|
} else if (character === "\\" || regexSingleEscape.test(character)) {
|
|
|
|
|
value = `\\${character}`;
|
|
|
|
|
} else {
|
|
|
|
|
value = character;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
output += value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const firstChar = str.charAt(0);
|
|
|
|
|
|
|
|
|
|
if (/^-[-\d]/.test(output)) {
|
|
|
|
|
output = `\\-${output.slice(1)}`;
|
|
|
|
|
} else if (/\d/.test(firstChar)) {
|
|
|
|
|
output = `\\3${firstChar} ${output.slice(1)}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Remove spaces after `\HEX` escapes that are not followed by a hex digit,
|
|
|
|
|
// since they’re redundant. Note that this is only possible if the escape
|
|
|
|
|
// sequence isn’t preceded by an odd number of backslashes.
|
|
|
|
|
output = output.replace(regexExcessiveSpaces, ($0, $1, $2) => {
|
|
|
|
|
if ($1 && $1.length % 2) {
|
|
|
|
|
// It’s not safe to remove the space, so don’t.
|
|
|
|
|
return $0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Strip the space.
|
|
|
|
|
return ($1 || "") + $2;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return output;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-15 15:34:31 +08:00
|
|
|
|
get type() {
|
|
|
|
|
return "css local identifier";
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 18:13:56 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {string} name export name
|
|
|
|
|
* @param {CssGeneratorExportsConvention} convention convention of the export name
|
|
|
|
|
* @returns {string[]} convention results
|
|
|
|
|
*/
|
|
|
|
|
getExportsConventionNames(name, convention) {
|
|
|
|
|
if (this._conventionNames) {
|
|
|
|
|
return this._conventionNames;
|
|
|
|
|
}
|
|
|
|
|
this._conventionNames = cssExportConvention(this.name, convention);
|
|
|
|
|
return this._conventionNames;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-15 15:34:31 +08:00
|
|
|
|
/**
|
|
|
|
|
* Returns the exported names
|
|
|
|
|
* @param {ModuleGraph} moduleGraph module graph
|
|
|
|
|
* @returns {ExportsSpec | undefined} export names
|
|
|
|
|
*/
|
|
|
|
|
getExports(moduleGraph) {
|
2024-06-30 18:13:56 +08:00
|
|
|
|
const module = /** @type {CssModule} */ (moduleGraph.getParentModule(this));
|
2024-11-07 00:11:54 +08:00
|
|
|
|
const convention =
|
2024-11-15 23:59:14 +08:00
|
|
|
|
/** @type {CssGenerator} */
|
2024-11-07 00:11:54 +08:00
|
|
|
|
(module.generator).convention;
|
2024-06-30 18:13:56 +08:00
|
|
|
|
const names = this.getExportsConventionNames(this.name, convention);
|
2021-12-15 15:34:31 +08:00
|
|
|
|
return {
|
2024-06-30 18:13:56 +08:00
|
|
|
|
exports: names.map(name => ({
|
|
|
|
|
name,
|
|
|
|
|
canMangle: true
|
|
|
|
|
})),
|
2021-12-15 15:34:31 +08:00
|
|
|
|
dependencies: undefined
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-30 18:13:56 +08:00
|
|
|
|
/**
|
|
|
|
|
* Update the hash
|
|
|
|
|
* @param {Hash} hash hash to be updated
|
|
|
|
|
* @param {UpdateHashContext} context context
|
|
|
|
|
* @returns {void}
|
|
|
|
|
*/
|
|
|
|
|
updateHash(hash, { chunkGraph }) {
|
2024-11-14 00:16:17 +08:00
|
|
|
|
if (this._hashUpdate === undefined) {
|
|
|
|
|
const module =
|
|
|
|
|
/** @type {CssModule} */
|
|
|
|
|
(chunkGraph.moduleGraph.getParentModule(this));
|
|
|
|
|
const generator =
|
2024-11-15 23:59:14 +08:00
|
|
|
|
/** @type {CssGenerator} */
|
2024-11-14 00:16:17 +08:00
|
|
|
|
(module.generator);
|
|
|
|
|
const names = this.getExportsConventionNames(
|
|
|
|
|
this.name,
|
|
|
|
|
generator.convention
|
|
|
|
|
);
|
|
|
|
|
this._hashUpdate = `exportsConvention|${JSON.stringify(names)}|localIdentName|${JSON.stringify(generator.localIdentName)}`;
|
|
|
|
|
}
|
|
|
|
|
hash.update(this._hashUpdate);
|
2024-06-30 18:13:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-12 03:22:51 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {ObjectSerializerContext} context context
|
|
|
|
|
*/
|
2021-12-15 15:34:31 +08:00
|
|
|
|
serialize(context) {
|
|
|
|
|
const { write } = context;
|
|
|
|
|
write(this.name);
|
|
|
|
|
write(this.range);
|
2021-12-17 03:42:44 +08:00
|
|
|
|
write(this.prefix);
|
2021-12-15 15:34:31 +08:00
|
|
|
|
super.serialize(context);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-12 03:22:51 +08:00
|
|
|
|
/**
|
|
|
|
|
* @param {ObjectDeserializerContext} context context
|
|
|
|
|
*/
|
2021-12-15 15:34:31 +08:00
|
|
|
|
deserialize(context) {
|
|
|
|
|
const { read } = context;
|
|
|
|
|
this.name = read();
|
|
|
|
|
this.range = read();
|
2021-12-17 03:42:44 +08:00
|
|
|
|
this.prefix = read();
|
2021-12-15 15:34:31 +08:00
|
|
|
|
super.deserialize(context);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CssLocalIdentifierDependency.Template = class CssLocalIdentifierDependencyTemplate extends (
|
|
|
|
|
NullDependency.Template
|
|
|
|
|
) {
|
|
|
|
|
/**
|
|
|
|
|
* @param {Dependency} dependency the dependency for which the template should be applied
|
2024-11-12 08:21:00 +08:00
|
|
|
|
* @param {string} local local name
|
2021-12-15 15:34:31 +08:00
|
|
|
|
* @param {DependencyTemplateContext} templateContext the context object
|
2024-11-12 08:21:00 +08:00
|
|
|
|
* @returns {string} identifier
|
2021-12-15 15:34:31 +08:00
|
|
|
|
*/
|
2024-11-12 08:21:00 +08:00
|
|
|
|
static getIdentifier(
|
2021-12-15 15:34:31 +08:00
|
|
|
|
dependency,
|
2024-11-12 08:21:00 +08:00
|
|
|
|
local,
|
|
|
|
|
{ module: m, chunkGraph, runtimeTemplate }
|
2021-12-15 15:34:31 +08:00
|
|
|
|
) {
|
|
|
|
|
const dep = /** @type {CssLocalIdentifierDependency} */ (dependency);
|
2024-06-30 18:13:56 +08:00
|
|
|
|
const module = /** @type {CssModule} */ (m);
|
2024-11-12 08:21:00 +08:00
|
|
|
|
|
|
|
|
|
return (
|
2024-11-26 01:41:48 +08:00
|
|
|
|
dep.prefix +
|
|
|
|
|
CssLocalIdentifierDependency.escapeIdentifier(
|
|
|
|
|
getLocalIdent(local, module, chunkGraph, runtimeTemplate)
|
|
|
|
|
)
|
2024-11-12 08:21:00 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param {Dependency} dependency the dependency for which the template should be applied
|
|
|
|
|
* @param {ReplaceSource} source the current replace source which can be modified
|
|
|
|
|
* @param {DependencyTemplateContext} templateContext the context object
|
|
|
|
|
* @returns {void}
|
|
|
|
|
*/
|
|
|
|
|
apply(dependency, source, templateContext) {
|
|
|
|
|
const { module: m, moduleGraph, runtime, cssExportsData } = templateContext;
|
|
|
|
|
const dep = /** @type {CssLocalIdentifierDependency} */ (dependency);
|
|
|
|
|
const module = /** @type {CssModule} */ (m);
|
2024-10-14 02:05:35 +08:00
|
|
|
|
const convention =
|
2024-11-15 23:59:14 +08:00
|
|
|
|
/** @type {CssGenerator} */
|
2024-10-14 02:05:35 +08:00
|
|
|
|
(module.generator).convention;
|
2024-06-30 18:13:56 +08:00
|
|
|
|
const names = dep.getExportsConventionNames(dep.name, convention);
|
2024-10-14 02:53:22 +08:00
|
|
|
|
const usedNames =
|
|
|
|
|
/** @type {(string)[]} */
|
|
|
|
|
(
|
|
|
|
|
names
|
|
|
|
|
.map(name =>
|
|
|
|
|
moduleGraph.getExportInfo(module, name).getUsedName(name, runtime)
|
|
|
|
|
)
|
|
|
|
|
.filter(Boolean)
|
2024-10-14 02:05:35 +08:00
|
|
|
|
);
|
2024-11-12 08:21:00 +08:00
|
|
|
|
const local = usedNames.length === 0 ? names[0] : usedNames[0];
|
|
|
|
|
const identifier = CssLocalIdentifierDependencyTemplate.getIdentifier(
|
|
|
|
|
dep,
|
|
|
|
|
local,
|
|
|
|
|
templateContext
|
|
|
|
|
);
|
2024-10-14 02:53:22 +08:00
|
|
|
|
|
2024-11-26 01:41:48 +08:00
|
|
|
|
source.replace(dep.range[0], dep.range[1] - 1, identifier);
|
2024-10-14 02:05:35 +08:00
|
|
|
|
|
2024-11-20 09:31:41 +08:00
|
|
|
|
for (const used of usedNames.concat(names)) {
|
2024-11-12 08:21:00 +08:00
|
|
|
|
cssExportsData.exports.set(used, identifier);
|
2024-06-30 18:13:56 +08:00
|
|
|
|
}
|
2021-12-15 15:34:31 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
makeSerializable(
|
|
|
|
|
CssLocalIdentifierDependency,
|
|
|
|
|
"webpack/lib/dependencies/CssLocalIdentifierDependency"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
module.exports = CssLocalIdentifierDependency;
|