Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
/ gulp-vinyl-flow Public archive

Check Vinyl files, streams or buffers, going through your Gulp™ pipeline(s).

License

Notifications You must be signed in to change notification settings

TigersWay/gulp-vinyl-flow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-vinyl-flow GitHub last commit GitHub issues

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

screenshot

Install npm

$ npm install gulp-vinyl-flow --save-dev

Usage

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 as options.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)
      Print vinyl.relative.
    • showCount (boolean | Default: true)
      Print the vinyl files count.

About

Check Vinyl files, streams or buffers, going through your Gulp™ pipeline(s).

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published