Skip to content

Commit

Permalink
fix(deps): update dependency p-queue to v5 (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and JustinBeckwith committed May 7, 2019
1 parent bfb2255 commit 7827fb4
Show file tree
Hide file tree
Showing 3 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 @@ -69,7 +69,7 @@
"lodash.merge": "^4.6.1",
"lodash.snakecase": "^4.1.1",
"merge-stream": "^1.0.1",
"p-queue": "^4.0.0",
"p-queue": "^5.0.0",
"protobufjs": "^6.8.6",
"split-array-stream": "^2.0.0",
"stack-trace": "0.0.10",
Expand Down
2 changes: 1 addition & 1 deletion src/session-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import {EventEmitter} from 'events';
import * as is from 'is';
import PQueue from 'p-queue';
import * as PQueue from 'p-queue';
import trace = require('stack-trace');

import {Database} from './database';
Expand Down
2 changes: 1 addition & 1 deletion test/session-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import * as assert from 'assert';
import * as events from 'events';
import * as extend from 'extend';
import PQueue from 'p-queue';
import * as PQueue from 'p-queue';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
import stackTrace = require('stack-trace');
Expand Down

0 comments on commit 7827fb4

Please sign in to comment.