We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e057d0c commit efad669Copy full SHA for efad669
packages/mongodb-memory-server-core/package.json
@@ -25,6 +25,7 @@
25
"homepage": "https://github.com/nodkz/mongodb-memory-server",
26
"dependencies": {
27
"camelcase": "^5.3.1",
28
+ "cross-spawn": "^6.0.5",
29
"debug": "^4.1.1",
30
"decompress": "^4.2.0",
31
"dedent": "^0.7.0",
packages/mongodb-memory-server-core/src/util/MongoInstance.ts
@@ -1,4 +1,5 @@
1
-import { ChildProcess, spawn as spawnChild } from 'child_process';
+import { ChildProcess } from 'child_process';
2
+import { default as spawnChild } from 'cross-spawn';
3
import path from 'path';
4
import MongoBinary from './MongoBinary';
5
import { MongoBinaryOpts } from './MongoBinary';
0 commit comments