Skip to content

Commit 8693b46

Browse files
committedSep 29, 2020
feat(MongoInstance): warn if nodejs version is below "10.15.0"
closes #379
1 parent 14d387f commit 8693b46

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎packages/mongodb-memory-server-core/src/util/MongoInstance.ts

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ import {
1212
} from '../types';
1313
import debug from 'debug';
1414
import { isNullOrUndefined } from './db_util';
15+
import { lt } from 'semver';
16+
17+
if (lt(process.version, '10.15.0')) {
18+
console.warn('Using NodeJS below 10.15.0');
19+
}
1520

1621
const log = debug('MongoMS:MongoInstance');
1722

0 commit comments

Comments
 (0)
Please sign in to comment.