4

我需要将捆绑文件大小作为命令输出或将其写入文件。

我已经考虑过webpack-bundle-analyzer,但命令和 JSON 文件输出似乎做了很多与我的用例无关的事情。

我也考虑过这个bundlesize包,但它主要进行比较检查并将失败或成功状态报告为命令输出。

如果有人对哪些相关工具、命令或标志可以帮助实现这一点有任何想法。将不胜感激。

干杯

4

2 回答 2

3

如果您正在寻找非常具体的东西。您可以尝试创建自己的插件代码来提取您需要的内容。

class PluginGetFileSize {
  private file: string;

  constructor(file: string) {
    // receive file to get size
    this.file = file; 
  }
  apply(compiler: any) {
    compiler.hooks.done.tap(
      'Get File Size',
      (stats: any) => {
        // Get output file
        const file = stats.compilation.assetsInfo.get(this.file); 
        
        // Verify if file exists
        if (!file)
          return console.log('File not exists');

        // Get file size
        const fileSizeInBytes = file.size;

        // only used to convert
        const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB']; 

        // Get size type
        const sizeType = parseInt(Math.floor(Math.log(fileSizeInBytes) / Math.log(1024)).toString());

        // Get size of file using size type
        const size = Math.round(fileSizeInBytes / Math.pow(1024, sizeType));

        // Here you can log, create a file or anything else
        console.log(`${this.file} has ${size} ${sizes[sizeType]}`);      
      }
    );
  }
}

对于这个简单的示例,我只需要传递一个文件路径即可使用插件,但如果需要,您可以在此处传递更多文件。

module.exports = {
  //...
  plugins: [
    new PluginGetFileSize('YOUR-OUTPUT-FILE.js'),
  ],
};

我相信一定有一些具有类似功能的软件包,例如:

于 2021-08-09T18:35:50.720 回答
1

另外,请查看 webpack 官方文档Bundle Analysis 部分。特别是如果使用 webpack 5,因为一些常用工具仍然不支持它。

bundle-stats是一个很棒的工具。

于 2022-01-05T10:15:25.583 回答