1

想象一下,我有一个丰富的应用程序,它使用了很多 3rd 方模块,包括lodashmomentaxiosreact

如果我最后将所有内容捆绑在一个捆绑包中,则大小将高于 1MB。

我希望 webpack 以它存储的方式打包我的库:

  1. 分开
  2. 分别的时刻
  3. 所有其他node_modules都存储在供应商捆绑包下
  4. 应用程序的代码存储在单独的文件中

我尝试以不同的方式使用CommonsChunkPlugin,但从未收到我想要的结果。

我准备了示例存储库来说明我的问题: https ://github.com/PavelPolyakov/webpack-react-bundles

Webpack 入口部分(conf/webpack.base.config.js):

entry: {
    lodash: 'lodash',
    moment: 'moment',
    app: [
        'react-hot-loader/patch',
        'webpack-dev-server/client?http://localhost:3001',
        'webpack/hot/only-dev-server',
        './app/index.js']
}

这是生产配置(conf/webpack.production.config.js),试图分离模块:

plugins: [
        new webpack.DefinePlugin({
            'process.env': {
                'NODE_ENV': JSON.stringify('production')
            }
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'vendor',
            minChunks: function (module) {
                // this assumes your vendor imports exist in the node_modules directory
                return module.context &&
                    module.context.indexOf('node_modules') !== -1;
            }
        }),
        new webpack.optimize.UglifyJsPlugin({
            minimize: true,
            compress: {
                warnings: true
            }
        })]

在这种情况下,moment 和 lodash 仍然会出现在 vendor bundle 中。我想把它们放在两个单独的包中。

任何想法表示赞赏。

4

2 回答 2

3

最后,我在 github 问题中收到了 @sokra 的帮助: https ://github.com/webpack/webpack/issues/4638

对于那些将面临同样问题的人,这里是完整的 webpack 配置,它解决了问题中描述的问题:

const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    entry: {
        app: ['./app/index.js']
    },
    output: {
        filename: '[name].bundle.js',
        sourceMapFilename: '[name].bundle.map',
        path: path.resolve(__dirname, './dist')
    },
    devServer: {
        port: 3001,
        contentBase: path.resolve(__dirname, './dist'),
        historyApiFallback: true
    },
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: [
                    {
                        loader: 'babel-loader',
                        options: {
                            presets: [['es2015', { 'modules': false }], 'react'],
                            plugins: ['transform-async-to-generator',
                                'transform-decorators-legacy',
                                'transform-runtime',
                                'react-html-attrs',
                                'react-hot-loader/babel'],
                        }
                    }
                ]
            },
            {
                test: /\.css/,
                use: ['style-loader', 'css-loader', 'postcss-loader']
            },
            {
                test: /\.(eot|svg|ttf|woff|woff2|gif|jpg|png)$/,
                use: 'file-loader'
            }
        ]
    },
    plugins: [
        new HtmlWebpackPlugin({
            template: './index.html',
            inject: "body"
        }),
        new webpack.optimize.UglifyJsPlugin({
            minimize: true,
            compress: {
                warnings: true
            }
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'vendor',
            minChunks: (m) => /node_modules/.test(m.context)
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'lodash',
            minChunks: (m) => /node_modules\/(?:lodash|moment)/.test(m.context)
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'moment',
            minChunks: (m) => /node_modules\/(?:moment)/.test(m.context)
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: "manifest",
            minChunks: Infinity
        })
    ],
    resolve: {
        extensions: ['.js', '.jsx']
    },
    devtool: 'source-map'
}

感谢所有试图提供帮助的人!

于 2017-04-08T07:58:36.737 回答
1

如果您从 CDN 包含它们并使用外部.

这不是按定义进行代码拆分,但可能接近您打算完成的目标:减少包大小。一些用户的 CDN 版本已经从另一个站点缓存,这是有好处的。

于 2017-04-04T18:26:14.230 回答