作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我注意到在我的构建中跨模块存在一些重复代码。我想通过编写一个 webpack 插件来优化我的 JavaScript,以查找 X 代码的实例并将其替换为简化版本的 Y 代码。
我编写了一个简单的 webpack 插件,看起来很接近,但它并不能完全满足我的要求。没有太多关于正确使用 webpack 的 ReplaceSource
的文档,甚至没有为这种操作 Hook 的正确生命周期。所以我这里的内容主要是通过阅读 webpack 源代码和浏览 GitHub 搜索拼凑而成。
const { ReplaceSource } = require('webpack-sources');
const codeMapEntries = Object.entries({
'const from = "complicated code from example";': 'const from = somethingSimpler;',
});
class ReplaceCodePlugin {
apply(compiler) {
compiler.plugin('compilation', (compilation) => {
compilation.plugin('optimize-modules', (modules) => {
modules.forEach((module) => {
if (module._source && module._source._value) {
let source;
codeMapEntries.forEach(([fromCode, toCode]) => {
const startPos = module._source._value.indexOf(fromCode);
if (startPos !== -1) {
if (!source) {
source = new ReplaceSource(module._source);
}
source.replace(
startPos,
startPos + fromCode.length - 1,
toCode
);
}
});
if (source) {
module._source = source;
}
}
});
});
});
}
}
module.exports = ReplaceCodePlugin;
这似乎适用于一些简单的情况,但这里有些地方不正确,它导致代码奇怪地困惑,然后导致我们的压缩器像这样提示:
SyntaxError: Unexpected token keyword «if», expected punc «,»
3417 | }, {
3418 | key: 'componentWillUnmount',
> 3419 | value: ffalse if (!Waypoint.getWindow()) {
| ^
3420 | return;
3421 | }
3422 |
这让我相信我没有正确使用 ReplaceSource
。
我还注意到出现了如下代码,看起来很奇怪:
var ___webpack_require__r"Jmof"= require('some-package');
var _somePackage2 = _interopRequir__webpack_require__t"yu5W"kage);
我什至不确定这是否是正确的方法,并且愿意接受有关替代解决方案的建议。
最佳答案
我能够通过使用优化 block Assets 编译 Hook 而不是优化模块编译 Hook 来完成这项工作。但是,我真的不明白为什么一个有效而另一个无效。作为引用,这是我的插件的工作版本:
const { ReplaceSource } = require('webpack-sources');
const codeMapEntries = Object.entries({
'const from = "complicated code from example";': 'const from = somethingSimpler;',
});
class ReplaceCodePlugin {
apply(compiler) {
compiler.plugin('compilation', (compilation) => {
compilation.plugin('optimize-chunk-assets', (chunks, callback) => {
function getAllIndices(str, searchStr) {
let i = -1;
const indices = [];
while ((i = str.indexOf(searchStr, i + 1)) !== -1) {
indices.push(i);
}
return indices;
}
chunks.forEach((chunk) => {
chunk.files.forEach((file) => {
let source;
const originalSource = compilation.assets[file];
codeMapEntries.forEach(([fromCode, toCode]) => {
const indices = getAllIndices(originalSource.source(), fromCode);
if (!indices.length) {
return;
}
if (!source) {
source = new ReplaceSource(originalSource);
}
indices.forEach((startPos) => {
const endPos = startPos + fromCode.length - 1;
source.replace(startPos, endPos, toCode);
});
});
if (source) {
// eslint-disable-next-line no-param-reassign
compilation.assets[file] = source;
}
callback();
});
});
});
});
}
}
module.exports = ReplaceCodePlugin;
关于webpack - 如何正确使用webpack的ReplaceSource来优化一些模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50026242/
我是一名优秀的程序员,十分优秀!