You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.warn(`[DEPRECATION] Legacy MongoDB version detected, using mongo-legacy package: ${error.message}
8
+
Warning: MongoDB versions <= 3.6 are deprecated. Some Meteor features may not work properly with this version.
9
+
It is recommended to use MongoDB >= 4.`);
10
+
if(!Package['npm-mongo-legacy']){
11
+
thrownewError('Please, install npm-mongo-legacy package to use this version of MongoDB running "meteor add npm-mongo-legacy", then move the listed package inside .meteor/packages to the top.');
12
+
}
13
+
returnfalse
14
+
}else{
15
+
thrownewError(`Failed to initialize Meteor's npm-mongo package: ${error}`);
0 commit comments