UNPKG

gulptraum

Version:

Smart task generator for gulp to get a build pipeline and more in seconds.

23 lines (16 loc) 415 B
import * as yargs from 'yargs'; function generate(gulp, config, gulptraum) { gulp.task('help', () => { const taskName = yargs.argv.task || ''; const helpCommandString = ['help'].concat(taskName) .join(' ') .trim(); gulptraum.cli.exec(helpCommandString); }); } export const command = { generate: generate, name: 'help', help: 'Shows the help.', excludeTaskFromCli: true, };