From 68a4a13484402d79985ae0f11c8d8078684c30e4 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 9 Sep 2015 15:31:50 -0500 Subject: [PATCH] chore(gulp): don't delete ionic-site in clean task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 94f0c2d624..31f61362f0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -131,7 +131,7 @@ gulp.task('serve', function() { }); gulp.task('clean', function(done) { - del(['dist/'], done); + del(['dist/**', '!dist', '!dist/ionic-site', '!dist/ionic-site/**/*'], done); }); function transpile(moduleType) {