UNPKG

grunt-available-tasks

Version:
32 lines (28 loc) 917 B
'use strict'; var _ = require('lodash'); function getOutput (output, groups, taskOptions, hideUngrouped) { var hasGroup = false; Object.keys(groups).forEach(function (group) { // Use contains to make sure that the task name is an exact match: // i.e. we don't want to match tasks and availabletasks as true if (_.includes(groups[group], taskOptions.name)) { hasGroup = true; var newobj = _.clone(taskOptions); output.push(_.extend(newobj, { group : _.capitalize(group) })); } }); if (!hasGroup) { if (Object.keys(groups).length) { if (!hideUngrouped) { output.push(_.extend(taskOptions, { group : 'Ungrouped' })); } } else { output.push(taskOptions); } } } module.exports = getOutput;