We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f852671 commit dcd3f4fCopy full SHA for dcd3f4f
2 files changed
packages/mongo/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@assemblerjs/mongo",
3
- "version": "0.9.0",
+ "version": "0.9.1",
4
"main": "./dist/index.js",
5
"module": "./dist/index.mjs",
6
"types": "./dist/index.d.ts",
packages/mongo/src/utils/run.utils.ts
@@ -64,9 +64,7 @@ const buildMongoCmd = (res: StartMongoTaskObject) => {
64
const exe =
65
platform === 'win32'
66
? // TODO: Test this.
67
- whichMongoSync() || 'mongod'
68
- : platform === 'linux'
69
- ? 'systemctl start mongod'
+ whichMongoSync() || 'mongod.exe'
70
: 'mongod';
71
const port = res.options.port || 27017;
72
const bindIp = res.options.bindIp?.join(',') || 'localhost';
0 commit comments