Gulpsrc
Gulpsrc is an informal term used in the JavaScript build tooling community to denote the source-stream function exposed by the gulp task runner. It is not a separate package; gulpsrc refers to gulp.src, the API call that creates a readable stream of input files for a build pipeline. The function reads files that match one or more glob patterns and yields Vinyl file objects that downstream plugins can process.
Implementation and options: Gulpsrc is implemented by the core gulp package via the vinyl-fs library. It accepts
return gulp.src('src/**/*.{js,css}', { base: 'src', since: gulp.lastRun(build) })
}
Notes on ecosystem: Gulpsrc has been part of gulp since earlier versions and remains a common entry