0.0.3 • Published 7 years ago

gulp-main-dedupe v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

gulp-main-dedupe Build Status

This plugin is checking for duplicate files (based on their path or filename) in the stream and filter them or throw an error.

Install:

npm install gulp-dedupe --save-dev

Example:

var dedupe = require('gulp-main-dedupe');

...
    .pipe(dedupe()) // Remove duplicates from previous tasks (if any).
    .pipe(concat('bundle.css')) // For example, we need to concat the result without duplicates.
    .pipe(gulp.dest('./build'));

dedupe(options) optionally accepts options object. The following options are available:

  • error to emit an error in case of duplicate (false by default).
  • same to emit an error in case duplicates have different contents (true by default).
  • diff to supply duplicates with different contents error from previous option with actual diff (false by default).

Credits

Marat Abdullin gulp-dedupe