1.0.0 • Published 8 years ago

gulp-unique-path v1.0.0

Weekly downloads
8
License
ISC
Repository
github
Last release
8 years ago

gulp-unique-path

Remove duplicate files by relative path.

Install

$ npm install --save-dev gulp-unique-path

Usage

Adding this into your Gulpfile.js:

var gulp = require('gulp');
var uniquePath = require('gulp-unique-path');

Sample usage

gulp.task('build', function () {

  return gulp.src('src/**/*')
    
    .pipe(uniquePath())
    
    .pipe(gulp.dest('dest'));

});