Delete watch task
This commit is contained in:
parent
fad368ecb2
commit
2f56f93d79
|
|
@ -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;
|
||||
Loading…
Reference in New Issue