美文网首页
rollup-plugin-uglify

rollup-plugin-uglify

作者: 猿话 | 来源:发表于2020-10-20 19:44 被阅读0次

    1、(plugin uglify) Error: Unexpected token: name «key», expected: punc «;»

     16 |   }
      17 |   function extend(to, from) {
    > 18 |     for (let key in from) {
         |             ^ Unexpected token: name «key», expected: punc «;»
      19 |       to[key] = from[key];
      20 |     }
      21 | 
    [!] (plugin uglify) Error: Unexpected token: name «key», expected: punc «;»
    

    原因:这个插件目前不支持es6.
    解决方法:可以用rollup-plugin-terser替换

    相关文章

      网友评论

          本文标题:rollup-plugin-uglify

          本文链接:https://www.haomeiwen.com/subject/icxjmktx.html