Commit c2932337d931675e8d24fa83476df81cff6a8bdc

Authored by Eric Fernandez
1 parent 2e1c1db0c9
Exists in master

agrego tarea para elminar archivos postinstall

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
... ... @@ -72,4 +72,10 @@ gulp.task('webserver', function() {
72 72 ]
73 73 });
74 74  
  75 +gulp.task('clean-post-install', function() {
  76 + return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js',
  77 + 'index.html'], {read: false})
  78 + .pipe(clean());
  79 +});
  80 +
75 81 gulp.task('default', ['webserver']);