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']);