File extension in watchTask matches conf.json

This commit is contained in:
Lionel Voser 2017-03-09 16:59:50 +01:00 committed by GitHub
parent 9b2d698c33
commit 2bd5f576ee
1 changed files with 2 additions and 2 deletions

View File

@ -10,11 +10,11 @@ function watchTask(options){
options.source + '/**/*.css', options.source + '/**/*.css',
options.source + '/**/*.scss', options.source + '/**/*.scss',
options.source + '/**/*.less', options.source + '/**/*.less',
options.source + '/**/conf.js' options.source + '/**/conf.json'
], ],
['dupe', 'less', 'sass', 'postcss', 'build'] ['dupe', 'less', 'sass', 'postcss', 'build']
); );
}); });
} }
module.exports = watchTask; module.exports = watchTask;