8

我尝试让 webpack tree-shaking删除未使用的babel-polyfill.

index.js文件包含:

import 'babel-polyfill'
const add4 = n => n + 4
const add5 = n => n + 5
add4(6)

console.log('boom', add4(4))

在这个文件中,没有代码需要任何 es2015+ polyfill,所以我希望通过 tree-shaking 移除捆绑输出中未使用的 babel-polyfill。事实并非如此,并且捆绑包仍然包含它们(缩小)。

这是带有此代码的 git 存储库

webpack 配置:

const MinifyPlugin = require('babel-minify-webpack-plugin')

module.exports = {
  entry: './index.js',
  output: {
    filename: 'bundle-webpack.js'
  },
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader'
        }
      }
    ]
  },
  plugins: [
    new MinifyPlugin({ mangle: { topLevel: true } }, { comments: false })
  ]
}

.babelrc

{
  "presets": [
    [
      "env",
      {
        "targets": {
          "browsers": ["chrome >= 50", "iOS >= 10", "ie >= 8"]
        },
        "useBuiltIns": true,
        "modules": false,
        "loose": true
      }
    ]
  ]
}

我试图用 替换babel-minify-webpack-pluginuglifyjs-webpack-plugin但它给出了相同的结果。

如何使 tree-shaking 工作,并且输出不包含babel-polyfills原始代码中未使用的任何内容?

4

1 回答 1

0

现在我意识到 babel-polyfill 修改了 tree-shaking 可能没有影响的全局范围......

这是一个愚蠢的问题:)

于 2017-11-16T17:25:15.900 回答