fix gulp watch

This commit is contained in:
Benjamin Pasero 2016-09-14 17:44:06 +02:00
parent afc1c9942e
commit af877ffb53

View file

@ -21,7 +21,7 @@ const watch = process.platform === 'win32'
? require('./watch-win32')
: require('gulp-watch');
module.exports = () => {
module.exports = function () {
return watch.apply(null, arguments)
.pipe(handleDeletions());
};