I have a gulp.src on a task but I want to match all the files that contain a certain word as a prefix e.g.:
gulp.src('./mydir/project.build-blessed1.css')
But there can be N files with different numbers, blessed1, blessed2, blessed3
How can I make it match any file that starts with that and has the .css extension on the same line, without using a function?