You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

43 lines
1.4 KiB

/*
* grunt
* http://gruntjs.com/
*
* Copyright (c) 2012 "Cowboy" Ben Alman
* Licensed under the MIT license.
* https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
*/
module.exports = function(grunt) {
// ==========================================================================
// TASKS
// ==========================================================================
grunt.registerMultiTask('concat', 'Concatenate files.', function() {
var files = grunt.file.expandFiles(this.file.src);
// Concat specified files.
var src = grunt.helper('concat', files, {separator: this.data.separator});
grunt.file.write(this.file.dest, src);
// Fail task if errors were logged.
if (this.errorCount) { return false; }
// Otherwise, print a success message.
grunt.log.writeln('File "' + this.file.dest + '" created.');
});
// ==========================================================================
// HELPERS
// ==========================================================================
// Concat source files and/or directives.
grunt.registerHelper('concat', function(files, options) {
options = grunt.utils._.defaults(options || {}, {
separator: grunt.utils.linefeed
});
return files ? files.map(function(filepath) {
return grunt.task.directive(filepath, grunt.file.read);
}).join(grunt.utils.normalizelf(options.separator)) : '';
});
};