Skip to content

Commit

Permalink
fix(deps): update dependency pumpify to v2 (#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and JustinBeckwith committed Jul 17, 2019
1 parent 213a88d commit 71a4f59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"mime-types": "^2.0.8",
"onetime": "^5.1.0",
"p-limit": "^2.2.0",
"pumpify": "^1.5.1",
"pumpify": "^2.0.0",
"snakeize": "^0.1.0",
"stream-events": "^1.0.1",
"through2": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions test/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ describe('File', () => {
const error = new Error('Error.');
const createGunzipStream = through();
createGunzipOverride = () => {
setImmediate(() => {
process.nextTick(() => {
createGunzipStream.emit('error', error);
});
return createGunzipStream;
Expand All @@ -1166,7 +1166,7 @@ describe('File', () => {
const error = new Error('Error.');
const createGunzipStream = through();
createGunzipOverride = () => {
setImmediate(() => {
process.nextTick(() => {
createGunzipStream.emit('error', error);
});
return createGunzipStream;
Expand Down

0 comments on commit 71a4f59

Please sign in to comment.