Support Meteor 3
zodern opened this issue · 5 comments
zodern commented
Support Meteor 3
ruohki commented
I seem like to bumped into an 3.0 issue.
Promise.await is not a function
i fixed it by local cloning the repo and chaning the (Promise as any).await calls to warp the function with Meteor.wrapAsync
pmogollons commented
I wasnt lucky with Meteor.wrapAsync
. I had to remove the Promise.await
part for it to work.
generalleger commented
zodern commented
I published 2.0.0-beta.1
which adds support for Meteor 3 (Meteor 2.2+ is still supported). The only breaking change is withCursors
is now async, which shouldn't affect any apps that use it as documented.
Please try it and let me know if you see any unexpected behavior.
generalleger commented
Thanks so much @zodern. I will update today and report any errors.