0.0.1 • Published 8 years ago

gulp-nodupe v0.0.1

Weekly downloads
-
License
Apache License 2....
Repository
-
Last release
8 years ago

Overview

Breaks a gulp stream if a duplicate files (duplicate meaning identical contents) are piped through it. Similar to gulp-dedupe, but intended to be used when the duplicate has to be removed by a human, rather than automatically.

Usage

It couldn't be simpler -- just add it to your pipe.

var gulp = require('gulp');
var nodupe = require('nodupe');

gulp.task('breakOnDuplicates', function() {
  gulp.src('path/to/*.glob')
    .pipe(nodupe())
    .pipe(gulp.dest('path/to/dist'));
});

Takes no options.