1.1.0 • Published 6 years ago
gulp-vinyl-flow v1.1.0
gulp-vinyl-flow

Allows you to check Vinyl files, streams or buffers, going through your Gulp™ pipeline(s).

Install 
$ npm install gulp-vinyl-flow --save-devUsage
const gulp = require('gulp');
const debug = require('gulp-vinyl-flow');
exports.default = () => (
gulp.src('static/images/**/*.{jpg,png}', {base:'static'})
.pipe(debug('Images'))
.pipe(gulp.dest('dist'));
);API
gulp-vinyl-flow(title | options)
- title (
string)\ Same asoptions.title. - options
- title (
string| Default:Vinyl)\ Allow a custom title to distinguish outputs over potential multiple logging instances. - minimal (
boolean| Default:true) v1.1.0+\ By default only vinyl.relative is shown. With Minimal off will also show cwd, base & path. - showFiles (
boolean| Default:true)\ Printvinyl.relative. - showCount (
boolean| Default:true)\ Print the vinyl files count.
- title (