我必须使用非开源的pub / sub库用于websockets(diffusion)并且必须坚持使用特定版本,因为它是在服务器端使用的,我无法控制它 .

问题是,在他们的代码库中的一个单独的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

Which regex can I use to exclude this dependency from minification?

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

              }
            }
          ],