Error: Unexpected token: punc ()

2019-07-01 22:56发布

I'm trying to build my project that uses webpack. My UglifyJS options looks like this:

new UglifyJSPlugin({
            sourceMap: false,
            uglifyOptions: {
              compress: {
                warnings: false,
              },
              output: {
                comments: false,
              },
            },
          }),

What I get is an error: Unexpected token: punc ()) [index-3d0ae630eaa0a0128a00.js:145853,20]

I have found some SO topic saying that this might be a problem with webpack uglify plugin, but I've already switched to an uglifyjs-webpack-plugin.

Any ideas?

1条回答
Summer. ? 凉城
2楼-- · 2019-07-01 23:30

I had the same error and was able to fix it by:

  1. Upgrading to the 1.0.0-beta.2 (npm i -D uglifyjs-webpack-plugin@beta)
  2. Adding "uglifyjs": true to the targets in babel-preset-env

If you're using the env preset, try updating the targets in your .babelrc:

{
  "presets": [
    [
      "env",
      {
        "targets": {
          "uglify": true
        }
      }
    ]
  ]
}

There is also an issue on the plugin repo that lists other possible solutions.

查看更多
登录 后发表回答