UNPKG

grunt-parallelize

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