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 +});