How do I assign a value to a variable using the command line when using a gulp task.
gulp.task('task-name',function(value){
var anotherValue = value;
});
Something like this, so when I run gulp task-name value I can access value.
I have tried using gulp-param, but that prevents some of my tasks from running.