Multiple file extensions within the same directory using Gulp

Take the spaces away

return gulp.src('./images/*.{png,gif,jpg}')

This glob pattern also worked for me:

return gulp.src('./images/*.+(jpg|jpeg|gif|png)')

Note: Notice the + sign, it doesn't work without it.

Found on minimatch documentation.