From c2932337d931675e8d24fa83476df81cff6a8bdc Mon Sep 17 00:00:00 2001 From: Eric Fernandez Date: Wed, 17 Oct 2018 15:32:29 -0300 Subject: [PATCH] agrego tarea para elminar archivos postinstall --- gulpfile.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index cd9bf30..277cf0d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -72,4 +72,10 @@ gulp.task('webserver', function() { ] }); +gulp.task('clean-post-install', function() { + return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', + 'index.html'], {read: false}) + .pipe(clean()); +}); + gulp.task('default', ['webserver']); -- 1.9.1