From f3522920abac292b93b9ff92d0f589b35d1afcd2 Mon Sep 17 00:00:00 2001 From: Jamie Date: Tue, 4 Apr 2017 17:39:08 +0100 Subject: [PATCH] Update gulpfile.js --- Ombi/Ombi/gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ombi/Ombi/gulpfile.js b/Ombi/Ombi/gulpfile.js index 45ad8afea..2c27cbb6e 100644 --- a/Ombi/Ombi/gulpfile.js +++ b/Ombi/Ombi/gulpfile.js @@ -270,7 +270,7 @@ gulp.task('libs') gulp.task('copy', ['lib', 'libcss', 'libfonts', 'libimages', 'npm', 'modules']); gulp.task('compile', ['sass']); gulp.task('build', callback => runSequence('copy', 'compile', callback)); -gulp.task('full', callback => runSequence('clean', 'build', callback)); +gulp.task('full', callback => runSequence('build', callback)); // Use this in a build server environment to compile and bundle everything gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'bundle', callback)); @@ -279,4 +279,4 @@ gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'b gulp.task('watch', function () { gulp.watch(paths.sass.src, ['sass']); gulp.watch('./Styles/**/*.css', ['libcss']); // legacy css -}); \ No newline at end of file +});