5

考虑到这个Webpack 3.8.1配置。

// common
module.exports = {
        context: path.resolve(__dirname, './src'),
        entry: [
            'whatwg-fetch',
            './index'
        ],
        output: {
            path: path.resolve(__dirname, 'build/assets'),
            publicPath: '/assets/',
            filename: 'main.js'
        },
        plugins: [
            new CleanWebpackPlugin(['build']),
        ],
        module: {
            rules: [{
                test: /\.js$/,
                exclude: /node_modules/,
                use: {
                    loader: 'babel-loader',
                }
            }, {
                test: /\.(scss|css)$/,
                use: [{
                    loader: 'style-loader'
                }, {
                    loader: 'css-loader'
                }, {
                    loader: 'sass-loader'
                }],
            }, {
                test: /\.(png|jpg|gif|woff2|woff)$/,
                use: [
                    {
                        loader: 'url-loader',
                        options: {
                            limit: 8192
                        }
                    }
                ]
            }]
        }
    };

//prod
module.exports = merge(common, {
    plugins: [
        new webpack.DefinePlugin({
            'process.env.NODE_ENV': JSON.stringify('production')
        }),
        new UglifyJSPlugin()
    ],
    devtool: 'none'
});

和这个Babel 6.26.0配置

{
  "presets": [
    [
      "env",
      {
        "modules": false,
        "targets": {
          "browsers": [
            ">1%"
          ]
        }
      }
    ], [
      "react"
    ]
  ],
  "plugins": [
    "transform-class-properties",
    "transform-export-extensions",
    "transform-object-rest-spread",
    "react-hot-loader/babel"
  ]
}

我期望树抖动和死代码消除UglifyJS应该以某种方式工作,使我能够从index.es.js模块中编写命名导入,例如Material-UI-Icons,未使用的导入从包中删除。

import {Menu} from 'material-ui-icons';

这个库确实将 package.json 中定义的 ES6 模块重新导出为"module": "index.es.js".

然而,在导入单个图标后,我的包大小增加了 0.5MB。当我将其更改为

import Menu from 'material-ui-icons/Menu;

仅导入此图标,捆绑包大小再次减小。

我的配置是否有问题,或者我是否误解了摇树的工作原理并且不适用于这种情况?

4

1 回答 1

4

所以经过一些额外的挖掘,我找到了原因/临时解决方案/解决方案。基本上,因为ES Modules可能有副作用,WebpackUglifyJS不能安全地(根据规范)删除通常在index.es.js或类似"module"入口点发现的未使用的再出口。

目前,有一些方法可以解决它。您可以仅手动导入必要的模块,也可以使用babel-plugin-direct-import

好消息是通过标志Webpack 4增加了对纯模块的支持。side-effects当库作者将其标记为纯时,摇树和缩小将按预期工作。我还建议阅读这篇关于 NodeJS 中 ESM 规范支持的精彩摘要。

现在我建议使用这个美妙的可视化工具手动处理你的包,并决定如何自己处理每个大型依赖项。

于 2017-11-17T23:03:49.710 回答