From 5bea586218258e538cb79fcacf34f6c4bfd80ff7 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 5 Oct 2016 00:09:54 +0200 Subject: type declaration for cloneInto --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index a7b58b9b1..40461b27a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -187,15 +187,15 @@ function concatStreams (/*streams...*/) { if (endCount == toMerge.length) stream.emit('end'); }) - }) + }); stream.write = function (data) { this.emit('data', data); - } + }; stream.destroy = function () { toMerge.forEach(function (e) { if (e.destroy) e.destroy(); }) - } + }; return stream; } @@ -329,7 +329,7 @@ function tsconfig(confBase) { path: "tsconfig.json", contents: new Buffer(x), }); - this.push(f) + this.push(f); cb(); }); } -- cgit v1.2.3