Skip to content

Commit

Permalink
Merge pull request #248 from jamhall/renovate/prettier-1.x
Browse files Browse the repository at this point in the history
chore(deps): update dependency prettier to v1.13.7
  • Loading branch information
kherock authored Jul 4, 2018
2 parents e65b970 + f81cc6b commit 9c6ef7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9c6ef7e

Please sign in to comment.