From af877ffb5325d024d333ae720bc30bcab63a0359 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 14 Sep 2016 17:44:06 +0200 Subject: [PATCH] fix gulp watch --- build/lib/watch/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lib/watch/index.js b/build/lib/watch/index.js index 6f71cb36761..17cd6ab6646 100644 --- a/build/lib/watch/index.js +++ b/build/lib/watch/index.js @@ -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()); };