Commit 37611324308a19bf119a7ce7134b55bedd8858b3

Authored by Eric Fernandez
1 parent 883f2b086d
Exists in master

tarea para eliminar archivos después de instalar

Showing 1 changed file with 5 additions and 0 deletions   Show diff stats
... ... @@ -39,3 +39,8 @@ gulp.task('pre-commit', function() {
39 39  
40 40 gulp.start('uglify');
41 41 });
  42 +
  43 +gulp.task('clean-post-install', function(){
  44 + return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js'], {read: false})
  45 + .pipe(clean());
  46 +});