Думаю, я понял это, посмотрев на код, который обрабатывает [name]
(https://github.com/webpack/webpack/blob/master/lib/TemplatedPathPlugin.js).
Мы можем написать плагин, который подключается к asset-path
.
const replacePathVariables = (path, data) => {
const REGEXP_CAMEL_CASE_NAME = /\[camelcasename\]/gi;
if (typeof path === "function") {
path = path(data);
}
if (data && data.chunk && data.chunk.name) {
return path.replace(
REGEXP_CAMEL_CASE_NAME,
data.chunk.name
.replace(/(\-\w)/g, (matches) => { return matches[1].toUpperCase(); })
.replace(/(^\w)/, (matches) => { return matches[0].toUpperCase(); })
);
} else {
return path;
}
};
class ExtraTemplatedPathPlugin {
apply(compiler) {
compiler.plugin("compilation", function(compilation) {
const mainTemplate = compilation.mainTemplate;
mainTemplate.plugin('asset-path', replacePathVariables);
});
}
}
Приведенный выше код поддерживает замену [camelcasename]
.