Merge pull request #29 from nenebale/master

File extension in watchTask now matches conf.json
This commit is contained in:
Dan Mindru 2017-03-11 15:20:11 +01:00 committed by GitHub
commit a33140224b
1 changed files with 2 additions and 2 deletions

View File

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