This plugin can be dropped into a stream to display the source file names (relative to your project root) as they pass through the pipeline.
$ npm install stream-files
var streamFiles = require('stream-files');
gulp.task('stream-files', function() {
gulp.src('/path/to/src')
.pipe(streamFiles())
//..
});
Copyright 2014 Elliot Fleming <http://github.com/elliotfleming>