beelzebub
Version:
One Hell of a Task Master!
49 lines (48 loc) • 1.54 kB
JavaScript
module.exports = {
'api': {
'helloworld': {},
'async': {},
'parallel': {},
'sequence': {},
'extend': {},
'stream': {},
'gulp': {},
'defaultRootlevel': {},
'defaultRootlevelAdvanced': {},
'subTasksSimple': {},
'subTasksAdvanced': {},
'passingVars': {},
'beforeAfter': {},
'beforeAfterAdvanced': {},
'helpDocs': {},
'defineVars': {},
'decoratorHelp': {},
'decoratorVars': {},
'events': {},
'interfaceTask': {},
'kitchenSink': {}
},
'cli': {
'helloworld': { 'type': 'cli', 'args': ['MyTasks.task1', 'MyTasks.task2'] },
'multiTaskGroups': { 'type': 'cli',
'args': [
'--myGlobalVar=hello',
'MyTasks1', '--v1=1',
'MyTasks2.task', '--v1=2'
] },
'helpDocs': { 'type': 'cli', 'args': ['--help'] },
'defineVars': { 'type': 'cli',
'args': [
'MyTasks.task1',
'MyTasks.task2', '--count=100', '-v',
'MyTasks.task3', '--fullname.first=hello', '--fullname.last=world', '--list=te', '--list=st'
] },
'decoratorHelp': { 'type': 'cli', 'args': ['--help'] },
'decoratorVars': { 'type': 'cli',
'args': [
'MyTasks.task1',
'MyTasks.task2', '--count=100', '-v',
'MyTasks.task3', '--fullname.first=hello', '--fullname.last=world', '--list=te', '--list=st'
] }
}
};