Add .publish to clean task

master
Alexander Surma 2015-06-04 13:12:20 -07:00 committed by Addy Osmani
parent 033c8e6240
commit e4cef5ded6
1 changed files with 1 additions and 1 deletions

View File

@ -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) {