Grunt concat + uglify with sourcemaps

前端 未结 2 1643
逝去的感伤
逝去的感伤 2020-12-13 02:52

I use concat to merge JS files into one file and uglify to minimize the JavaScript. How can I create a sourcemaps file that uses the source JS files?

My current gru

2条回答
  •  有刺的猬
    2020-12-13 03:11

    Per the grunt-contrib-uglify docs, you can enable sourcemap generation as part of the uglify process.

    Your uglify config would look something like:

    uglify: {
            dist: {
                files: {
                    '<%= config.dist %>/js/main.min.js': ['<%= concat.dist.dest %>']
                },
                options: {
                    sourceMap: true
            }
        },
    

提交回复
热议问题