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
The old softwarerero:accounts-t9n Meteor package that useraccounts:core still depends on requires an old version of coffeescript that has become incompatible with other packages that I use.
The text was updated successfully, but these errors were encountered:
tab00
changed the title
meteor-accounts-t9n is now only an NPM package. Remove dependency.
meteor-accounts-t9n is now only an NPM package. Remove dependency on old version.
Jan 29, 2018
I removed: meteor remove useraccounts:core (this removes softwarero:account-t9n dependency) meteor remove useraccounts:iron-routing (in my case iron router)
and then added: meteor add jaume:useraccounts-core (that installs dependency jaume:account-t9n) meteor add jaume:useraccounts-iron-routing (in my case)
Then, change your import statements in js files: before: import { AccountsTemplates } from 'meteor/useraccounts:core'; after: import { AccountsTemplates } from 'meteor/jaume:useraccounts-core';
These packages from Jaume have dependencies to latest coffescript and coffescript compiler (you might have to run meteor update --all-packages ) and this fixed it for me.
meteor-accounts-t9n is now only an NPM package as of version 2.3.0.
The old softwarerero:accounts-t9n Meteor package that useraccounts:core still depends on requires an old version of coffeescript that has become incompatible with other packages that I use.
The text was updated successfully, but these errors were encountered: