Skip to content

Commit 5bf718b

Browse files
committed
chore: update dependencies
1 parent d8892d8 commit 5bf718b

File tree

3 files changed

+1095
-390
lines changed

3 files changed

+1095
-390
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,27 @@
2424
"homepage": "https://github.com/nodkz/mongodb-memory-server",
2525
"devDependencies": {
2626
"babel-cli": "^6.26.0",
27-
"babel-eslint": "^8.2.1",
28-
"babel-jest": "^22.2.2",
27+
"babel-eslint": "^8.2.2",
28+
"babel-jest": "^22.4.3",
2929
"babel-plugin-transform-class-properties": "^6.24.1",
3030
"babel-plugin-transform-flow-strip-types": "^6.22.0",
3131
"babel-plugin-transform-object-rest-spread": "^6.26.0",
3232
"babel-plugin-transform-runtime": "^6.23.0",
3333
"babel-preset-env": "^1.6.1",
3434
"cz-conventional-changelog": "^2.1.0",
35-
"eslint": "^4.17.0",
35+
"eslint": "^4.19.1",
3636
"eslint-config-airbnb-base": "^12.1.0",
3737
"eslint-config-prettier": "^2.9.0",
38-
"eslint-plugin-flowtype": "^2.44.0",
39-
"eslint-plugin-import": "^2.8.0",
38+
"eslint-plugin-flowtype": "^2.46.1",
39+
"eslint-plugin-import": "^2.9.0",
4040
"eslint-plugin-prettier": "^2.6.0",
41-
"flow-bin": "^0.65.0",
42-
"jest": "^22.3.0",
43-
"mongodb": "3.0.2",
41+
"flow-bin": "^0.68.0",
42+
"jest": "^22.4.3",
43+
"mongodb": "3.0.5",
4444
"npm-run-all": "^4.1.2",
45-
"prettier": "^1.10.2",
45+
"prettier": "^1.11.1",
4646
"rimraf": "^2.6.2",
47-
"semantic-release": "^12.4.1"
47+
"semantic-release": "^15.1.4"
4848
},
4949
"dependencies": {
5050
"babel-runtime": "^6.26.0",
@@ -56,7 +56,7 @@
5656
"lockfile": "^1.0.3",
5757
"md5-file": "^3.2.3",
5858
"mkdirp": "^0.5.1",
59-
"request": "^2.83.0",
59+
"request": "^2.85.0",
6060
"request-promise": "^4.2.2",
6161
"tmp": "^0.0.33",
6262
"uuid": "^3.2.1"

src/util/MongoInstance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default class MongodbInstance {
107107
}
108108

109109
async kill(): Promise<MongodbInstance> {
110-
if (this.childProcess && !this.childProcess.killed) {
110+
if (this.childProcess && !(this.childProcess: any).killed) {
111111
await new Promise(resolve => {
112112
this.childProcess.once(`exit`, resolve);
113113
this.childProcess.kill();

0 commit comments

Comments
 (0)