0 votes
in JAVA by
What is gulp.src and how to use it?

1 Answer

0 votes
by

As the name suggest src, points to your source files (files you wish to use). It returns a readable stream and then piped to other streams using .pipe (as seen in earlier answers).

gulp.src(globs[, options])

It takes glob as parameter along with an optional [option] parameter. Read more about glob here.

...