I've been using grunt.js to concatenate and then minify javascript files. The way I've been accomplishing this task leaves me with an extra script.con.js file (the concatenated file). I don't find it really necessary other than staging a concatenated file to minify. What am I missing in my example below?
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
concat: {
'app/webroot/js/script.con.js': [
'app/webroot/js/plugins/plugins.js',
'app/webroot/js/main.js'
]
},
min: {
'app/webroot/js/script.min.js': 'app/webroot/js/script.con.js'
},
watch: {
files: ['app/webroot/js/main.js'],
tasks: 'concat min'
}
});
// Default task.
grunt.registerTask('default', 'concat min');
};
Thank you in advance for your help.