From a5654488d41c7011b4df601d67a83c7c16691055 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 3 Jul 2018 21:12:13 +0000 Subject: [PATCH 1/2] chore(deps): update dependency prettier to v1.13.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4c76e4a4..9084a422 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "md5": "2.2.1", "mocha": "5.2.0", "moment": "2.22.2", - "prettier": "1.12.1", + "prettier": "1.13.7", "prettier-check": "2.0.0", "request": "2.87.0", "request-promise-native": "1.0.5" From f81cc6b1ee4ed882ade4c31a5e4dda63182bd31b Mon Sep 17 00:00:00 2001 From: Kyle Herock Date: Wed, 4 Jul 2018 14:22:22 -0400 Subject: [PATCH 2/2] chore: Rerun prettier to resolve #248 --- lib/utils.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index 257d67ab..197934aa 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -85,7 +85,10 @@ exports.concatStreams = function(streams) { if (!stream) return passThrough.end(); stream.once("end", () => pipeNext(streams.shift())); - stream.pipe(passThrough, { end: false }); + stream.pipe( + passThrough, + { end: false } + ); }; pipeNext(streams.shift()); return passThrough;