-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: Cannot read property 'constructor' of undefined #8
Comments
I fixed at #9 |
@arunoda can we kindly get this pr merged and create a new major version? |
unfortunatly this package here is unmaintained. We should get rid of it as a dependency. |
This commit brings the relevant bits of meteorhacks:meteorx into the mdg:meteor-apm-agent package, so that various issues can be fixed without forking or continuing to maintain meteorhacks:meteorx. Related: meteor/meteor#10337 (comment) meteorhacks/meteorx#8 meteorhacks/meteorx#9 abecks/meteor-fast-render#25
For those using |
@macrozone @rpong @benjamn You can see details here: |
but no unblock support for new version? |
@crapthings |
For those who are using other packages which have not yet been updated to use lamhieu's new fork, you can make a temporary "proxy" package for meteorhacks:meteorx by making a
|
@JorgeER It's very nice! |
Thanks for the workaround @JorgeER! I was getting the error because https://github.com/nerdvibe/sikka-CM depends on meteorhacks:meteorx. |
Since this change has been implemented: meteor/meteor#10053
meteorhacks:meteorx is throwing the following error during build:
The fix is to change
session._namedSubs.[subId];
tosession._namedSubs.has(subId);
anddocumentView.documents.[id].constructor;
todocumentView.documents.has(id).constructor;
in/lib/livedata.js
forexposeSubscription()
andexposeSessionCollectionView()
The text was updated successfully, but these errors were encountered: