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;