Commit 951887d15fc22c483503366a55b1ee42c2c5c682
1 parent
c74c05aa55
Exists in
master
creo tarea clean-post-install
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
gulpfile.js
... | ... | @@ -67,4 +67,10 @@ gulp.task('webserver', function() { |
67 | 67 | ] |
68 | 68 | }); |
69 | 69 | |
70 | +gulp.task('clean-post-install', function(){ | |
71 | + return gulp.src(['src', 'tmp', '.jshintrc','readme.md', '.gitignore', 'gulpfile.js', | |
72 | + 'index.html'], {read: false}) | |
73 | + .pipe(clean()); | |
74 | +}); | |
75 | + | |
70 | 76 | gulp.task('default', ['webserver']); |
71 | 77 | \ No newline at end of file |