简体   繁体   English

CleanWebpackPlugin 在 Webpack 5 中不清理

[英]CleanWebpackPlugin does not clean in Webpack 5

I am using latest version of webpack 5.3.2 with "clean-webpack-plugin": "^3.0.0".我正在使用带有“clean-webpack-plugin”:“^3.0.0”的最新版本的 webpack 5.3.2。 And apparently the plugin does not clean dist folder when I build.显然插件在我构建时不会清理 dist 文件夹。

Here's my webpack info:这是我的 webpack 信息:

  Binaries:
    Node: 12.18.1 - ~/.nvm/versions/node/v12.18.1/bin/node
    Yarn: 1.22.4 - ~/.nvm/versions/node/v12.18.1/bin/yarn
    npm: 6.14.8 - ~/.nvm/versions/node/v12.18.1/bin/npm
  Browsers:
    Chrome: 86.0.4240.111
    Firefox: 82.0
  Packages:
    clean-webpack-plugin: ^3.0.0 => 3.0.0 
    copy-webpack-plugin: ^6.2.1 => 6.2.1 
    terser-webpack-plugin: ^5.0.3 => 5.0.3 
    webpack: ^5.3.2 => 5.3.2 
    webpack-cli: ^4.1.0 => 4.1.0 
  Global Packages:
    webpack-cli: 4.1.0
    webpack: 5.3.2

And here's my webpack config:这是我的 webpack 配置:

const path = require('path');
const webpack = require('webpack');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');

module.exports = {
  mode: 'development',
  entry: './src/index.ts',
  plugins: [
    new CleanWebpackPlugin({
  cleanOnceBeforeBuildPatterns: [path.join(__dirname, 'dist/**/*')]
}),
    new webpack.ProgressPlugin(),
    new CopyPlugin({
      patterns: [
        { from: 'src', to: 'src' },
        { from: 'package.json' },
        { from: 'README.md' }
      ],
    }),
  ],
  output: {
    filename: 'utils.min.js'
  },
  module: {
    rules: [
      {
        test: /\.(ts|tsx)$/,
        loader: 'ts-loader',
        include: [path.resolve(__dirname, 'src')],
        exclude: [/node_modules/]
      },
      {
        test: /\.m?js$/,
        exclude: [/node_modules/],
        use: {
          loader: 'babel-loader',
          options: {
            presets: ['@babel/preset-env']
          }
        }
      }]
  },

  resolve: {
    extensions: ['.tsx', '.ts', '.js']
  }
}

Even when I enable verbose option I see no logs and the plugin doesn't clean.即使我启用了详细选项,我也看不到日志,插件也没有清理。

From webpack v5, you can remove the clean-webpack-plugin plugin and use the output.clean option in your webpack config:从 webpack v5 开始,您可以删除clean-webpack-plugin插件并在 webpack 配置中使用 output.clean 选项:

 output: {
    filename: 'utils.min.js',
    clean: true,
 }

Apparently when you specify an option.output(in my case for the customization of the output bundle name) clean-webpack-plugin will also need you to specify the path or else the plugin will be disabled with no error!:显然,当您指定 option.output(在我的情况下是自定义输出包名称)时, clean-webpack-plugin还需要您指定路径,否则插件将被禁用且不会出错!:

  output: {
    filename: 'utils.min.js',
    path: path.resolve(__dirname, 'dist')
  },

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM