5

我想覆盖 webpack 规则的排除/包含。该项目是用创建的vue-cli-sevice,因此只有一个vue.config.js. 我可以使用 连接到配置chainWebpack,但我无法编辑规则本身。

的输出vue-cli-service inspect包含我要编辑的规则:

      /* config.module.rule('js') */
      {
        test: /\.jsx?$/,
        exclude: [
          function () { /* omitted long function */ }
        ],
        use: [
          {
            loader: 'cache-loader',
            options: {
              cacheDirectory: '/Users/m/projects/echo/.../.cache/babel-loader',
              cacheIdentifier: '4b5cee3d'
            }
          },
          {
            loader: 'babel-loader'
          }
        ]
      },

我现在想从我vue.config.js的(注释掉的部分显示我如何在文档中找到它但它不起作用)编辑此配置:

const chainWebpack = (config) => {
    config.module.rule('js');
        // .include
        // .add('node-modules/blubb')
        // .end();
};

module.exports = {
    chainWebpack
};

如何添加include或覆盖exclude此规则配置的属性?

4

2 回答 2

12

我让它像这样工作。这将清除整个排除并添加一个包含。

const chainWebpack = (config) => {
    config.module
        .rule('js')
        .test(/\.jsx?$/)
            .exclude
                .clear()
            .end()
            .include
                .add(function() {
                    return [
                        'node_modules/include-me',
                        'src'
                    ]
                })
            .end()
};

检查一切是否按预期工作的最简单方法是 IMO to run vue-cli-service inspect。更改配置,检查检查是否失败,如果没有,检查输出是否包含所需的更改。

于 2019-07-15T09:55:38.953 回答
1
 /* config.module.rule('js') */
  {
    test: /\.m?jsx?$/,
    exclude: [
      filepath => {
                  // always transpile js in vue files
                  if (/\.vue\.jsx?$/.test(filepath)) {
                    return false
                  }
                  // exclude dynamic entries from cli-service
                  if (filepath.startsWith(cliServicePath)) {
                    return true
                  }
      
                  // only include @babel/runtime when the @vue/babel-preset-app preset is used
                  if (
                    process.env.VUE_CLI_TRANSPILE_BABEL_RUNTIME &&
                    filepath.includes(path.join('@babel', 'runtime'))
                  ) {
                    return false
                  }
      
                  // check if this is something the user explicitly wants to transpile
                  if (transpileDepRegex && transpileDepRegex.test(filepath)) {
                    return false
                  }
                  // Don't transpile node_modules
                  return /node_modules/.test(filepath)
                }
    ],
    use: [
      {
        loader: '/Users/penglz/codeLab/mantis/node_modules/cache-loader/dist/cjs.js',
        options: {
          cacheDirectory: '/Users/penglz/codeLab/mantis/node_modules/.cache/babel-loader',
          cacheIdentifier: '12a9bd26'
        }
      },
      {
        loader: '/Users/penglz/codeLab/mantis/node_modules/thread-loader/dist/cjs.js'
      },
      {
        loader: '/Users/penglz/codeLab/mantis/node_modules/babel-loader/lib/index.js'
      }
    ]
  },

这是 vue-cli 配置的完整视图,我无法弄清楚清除原始配置后会发生什么(上面的代码,排除:[ filpath => { // some logic }]),所以我没有修改它(就像另一个答案一样)。

为了转换一些 pkg,我在我的 vue.config.js 中创建了一个新规则,它适用于原始配置

config.module
  .rule('resolveNodeModules')
  .test(/\.m?jsx?$/)
  .include.add(/node_modules\/(vue2-editor|quill|quill-delta)\/.*/)
  .end()
  .use('babel-loader')
  .loader('babel-loader')

在我的配置中,我想转换 vue2-editor/quill/quill-delta,它可以工作并且它应该不会影响原始配置

于 2021-04-29T07:06:06.580 回答