Webpack 4,从缩小/压缩中排除第三方lib

时间:2018-03-19 14:51:00

标签: webpack webpack-4

我的配置中有以下内容:

const viewerConfigProdWeb = merge(common.commonWebConfig, {
output: {
    path: outputPath,
    filename: common.bundleNameWeb
},
devtool: 'source-map',
mode: 'production',
optimization: {
    minimizer: [
        new UglifyJsPlugin({
            cache: true,
            parallel: true,
            sourceMap: true,
            uglifyOptions: {
                compress: false,    //<--- if enabled, causes errors
                ecma: 6,
                mangle: true,
                exclude: path.resolve(__dirname, '../js/vendor/tomtom.min.js'),    // <--- it is already minified, want to exclude it somehow. But this approach doesn't work =(
            }
        })
    ]
}
});

当我更改&#39;压缩&#39;在uglifyOptions中为true。当webpack尝试优化已经压缩和缩小的第三方lib时,会出现这些错误。如何将其从优化中排除?

更新:根据Sin的回答和readme,将配置中的优化部分更改为以下内容:

    optimization: {
    minimizer: [
        new UglifyJsPlugin({
            cache: true,
            parallel: true,
            sourceMap: true,
            exclude: /\.min\.js$/,     //<---- moved up and used regex
            uglifyOptions: {
                compress: true,        //<---- still causes errors when enabled
                ecma: 6,
                mangle: true
            }
        })
    ]
}

这不起作用=(还有其他想法吗?

1 个答案:

答案 0 :(得分:1)

工作了一段时间后,终于发现exclude选项只检查输出文件名而不是源文件名。有github issue解决这个问题。 您可以尝试@hulkish在那里提供的解决方案。

原始答案(不工作):

尝试将exclude添加到UglifyJsPlugin选项的顶级。并使用RegExpRegExp数组而不是完整路径。见uglifyjs-webpack-plugin README