正则表达式从缩小中排除 npm 库

Ga *_*chi 2 javascript regex webpack push-diffusion

我必须为 websockets(扩散)使用非开源发布/订阅库,并且必须坚持使用特定版本,因为它是在服务器端使用的,我无法控制它。

问题是,在他们的代码库中的一个单独的 util 中,他们使用了保留关键字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
Run Code Online (Sandbox Code Playgroud)

我可以使用哪个正则表达式从缩小中排除此依赖项?

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));
  });
Run Code Online (Sandbox Code Playgroud)

这是 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": {

              }
            }
          ],
Run Code Online (Sandbox Code Playgroud)

M1K*_*1K_ 5

这已在 6.0.0 版中得到修复