From 2f56f93d795b6493c15e688b48e0cd42e66b1081 Mon Sep 17 00:00:00 2001 From: Dan Mindru Date: Sat, 31 Aug 2019 16:53:26 +0200 Subject: [PATCH] Delete watch task --- tasks/watch.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 tasks/watch.js diff --git a/tasks/watch.js b/tasks/watch.js deleted file mode 100644 index 1c01fd6..0000000 --- a/tasks/watch.js +++ /dev/null @@ -1,20 +0,0 @@ -'use strict'; - -var gulp = require('gulp'); - -function watchTask(options){ - gulp.task('watch', ['dupe', 'build'], function(){ - gulp.watch( - [ - options.source + '/**/*.html', - options.source + '/**/*.css', - options.source + '/**/*.scss', - options.source + '/**/*.less', - options.source + '/**/conf.json' - ], - ['dupe', 'less', 'sass', 'postcss', 'build'] - ); - }); -} - -module.exports = watchTask;