I\'ve created a new grunt task and within it I want to use grunt-contrib-concat to concatenate a few files together.
I looked through the docs but I don\'t find an
From https://github.com/gruntjs/grunt/wiki/Creating-tasks
grunt.registerTask('foo', 'My "foo" task.', function() { // Enqueue "bar" and "baz" tasks, to run after "foo" finishes, in-order. grunt.task.run('bar', 'baz'); // Or: grunt.task.run(['bar', 'baz']); });