Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit d53f635

Browse files
authored
chore: run npm-check-updates (#156)
1 parent c222309 commit d53f635

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

bin/mongodb-runner-worker.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ startWorker(args, function(err, opts) {
2929

3030
function onServerStopped() {
3131
debug('`%s` stopped', opts.name);
32-
server = null;
3332
opts = null;
3433
debug('goodbye');
3534

lib/worker.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ module.exports = function(opts, done) {
232232
}
233233

234234

235-
236235
// HACCK DON"T LOOK AT ME>>>>>
237236
opts.server = server;
238237

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,28 @@
4242
},
4343
"license": "Apache-2.0",
4444
"dependencies": {
45-
"async": "^2.0.0",
46-
"clui": "^0.3.1",
47-
"debug": ">= 2.6.9 < 3.0.0 || >= 3.1.0",
48-
"fs-extra": "^4.0.2",
45+
"async": "^3.1.0",
46+
"clui": "^0.3.6",
47+
"debug": "^4.1.1",
48+
"fs-extra": "^8.1.0",
4949
"is-mongodb-running": "^1.0.1",
50-
"lodash.defaults": "^4.0.1",
50+
"lodash.defaults": "^4.2.0",
5151
"minimist": "^1.2.0",
5252
"mkdirp": "^0.5.1",
53-
"mongodb": "^3.1.9",
53+
"mongodb": "^3.3.2",
5454
"mongodb-dbpath": "^0.0.1",
5555
"mongodb-tools": "github:mongodb-js/mongodb-tools#8da4724189dfdf7b0d02d87db14b7ce94adf6342",
56-
"mongodb-version-manager": "^1.3.1",
57-
"untildify": "^3.0.0",
58-
"which": "^1.2.4"
56+
"mongodb-version-manager": "^1.3.2",
57+
"untildify": "^4.0.0",
58+
"which": "^2.0.1"
5959
},
6060
"devDependencies": {
61-
"eslint-config-mongodb-js": "^3.0.0",
61+
"eslint-config-mongodb-js": "^5.0.3",
6262
"github-release": "^0.2.0",
6363
"kill-mongodb": "^1.0.1",
6464
"lone": "^0.5.0",
65-
"mocha": "^5.2.0",
66-
"mongodb-js-precommit": "^1.0.0",
67-
"tmp": "0.0.33"
65+
"mocha": "^6.2.1",
66+
"mongodb-js-precommit": "^2.0.0",
67+
"tmp": "^0.1.0"
6868
}
6969
}

test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('Test Spawning MongoDB Deployments', function() {
2929
if (err2) {
3030
return done(err2);
3131
}
32-
assert(v); // ensure not null
32+
assert(v); // ensure not null
3333
done();
3434
});
3535
});

0 commit comments

Comments
 (0)