UNPKG

grunt-parallelize

Version:
27 lines (23 loc) 493 B
'use strict'; module.exports = function(grunt) { grunt.initConfig({ echofilesrc: { test_src: { expand: true, cwd: '../fixtures', src: [ '*.txt' ] } }, parallelize: { echofilesrc: { test_src: 2, } } }); // Load this tasks. grunt.loadTasks('../../tasks'); // Load tasks for testing. grunt.loadTasks('../tasks'); // Set defaut task. grunt.registerTask('default', ['parallelize:echofilesrc:test_src']); };