From e4cef5ded619f2ffe756aa551bcc5741bcc45319 Mon Sep 17 00:00:00 2001 From: Alexander Surma Date: Thu, 4 Jun 2015 13:12:20 -0700 Subject: [PATCH] Add .publish to clean task --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 765c2a9d..e6aa0328 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -195,7 +195,7 @@ gulp.task('scripts', function () { }); // Clean Output Directory -gulp.task('clean', del.bind(null, ['dist'], {dot: true})); +gulp.task('clean', del.bind(null, ['dist', '.publish'], {dot: true})); // Build Production Files, the Default Task gulp.task('default', ['clean', 'mocha'], function (cb) {