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 gruntfile:
concat: {
options: {
// define a string to put between each file in the concatenated output
separator: ';'
},
dist: {
// the files to concatenate
src: ['<%= config.src %>/js/**/*.js'],
// the location of the resulting JS file
dest: '<%= config.dist %>/js/main.js'
}
},
uglify: {
dist: {
files: {
'<%= config.dist %>/js/main.min.js': ['<%= concat.dist.dest %>']
}
}
},
You need to enable source maps on both the
concat
anduglify
tasks, and you must specify thesourceMapIn
option for the uglify task.Here's a sample grunt config:
Per the grunt-contrib-uglify docs, you can enable sourcemap generation as part of the uglify process.
Your uglify config would look something like: