标签: gruntjs uglifyjs grunt-contrib-concat grunt-contrib-uglify babeljs
我正在寻找一种在我的6to5构建过程中使用grunt转换器的方法,同时仍然能够将ES5输出的任何缩小文件映射回原始ES6源文件。
6to5
grunt
grunt-6to5插件只有一个布尔sourceMap选项,当然会生成映射回ES5源文件的.map文件。但是当尝试将其与grunt-contrib-concat / grunt-contrib-uglify结合使用时,我只能将映射返回到ES5输出,而不是原始ES6源。
grunt-6to5
sourceMap
grunt-contrib-concat
grunt-contrib-uglify
有没有办法完成我想要做的事情?