我必须为 websockets(扩散)使用非开源 pub/sub 库,并且必须坚持使用特定版本,因为它是在服务器端使用的,我无法控制它。
问题是,在他们的代码库中的一个 util 中,他们使用了 reserved 关键字interface
,这会触发一个破坏构建的缩小错误:
Failed to minify the code from this file:
./node_modules/babel-loader/lib??ref--6-oneOf-2!./node_modules/diffusion/src/node_modules/util/interface.js:127
Read more here: bit.ly/CRA-build-minify
我可以使用哪个正则表达式从缩小中排除这种依赖关系?
config.optimization.minimizer[0].options.exclude = /node_modules/;
不会将其排除在缩小范围之外。
config.optimization.minimizer[0].options.exclude = /^.*(node_modules|.js).*$/;
有效,但它太宽泛了
有关更多上下文,这是导致缩小失败的依赖项代码:
node_modules/diffusion/src/node_modules/util/interface.js
function _implements() {
var args = Array.prototype.slice.call(arguments, 0);
var impl = args.pop();
var unsatisfied = [];
...
// The joys of duck type. Quack quack
args.forEach(function(interface) { <<<<<<<<<<<<<<<<<<<<<
unsatisfied = unsatisfied.concat(interface(impl));
});
这是我覆盖之前 webpack 配置文件的样子:(我们不允许弹出)
"optimization": {
"minimizer": [
{
"options": {
"test": {
},
"extractComments": false,
"sourceMap": true,
"cache": true,
"parallel": true,
"terserOptions": {
"output": {
"ecma": 5,
"comments": false,
"ascii_only": true
},
"parse": {
"ecma": 8
},
"compress": {
"ecma": 5,
"warnings": false,
"comparisons": false,
"inline": 2
},
"mangle": {
"safari10": true
}
}
}
},
{
"pluginDescriptor": {
"name": "OptimizeCssAssetsWebpackPlugin"
},
"options": {
"assetProcessors": [
{
"phase": "compilation.optimize-chunk-assets",
"regExp": {
}
}
],