Im trying to use gulp prompt:
gulp.src('test.js')
.pipe(prompt.prompt({
type: 'input',
name: 'task',
message: 'Which task would you like to run?'
}, function(res){
//value is in res.task (the name option gives the key)
}));
Im confused to actually what gulp.src is for? I don't have a src I just want to prompt the user for an input.