meteor-useraccounts / core

Meteor sign up and sign in templates' core functionalities
http://useraccounts.meteor.com/
MIT License
529 stars 278 forks source link

meteor-accounts-t9n is now only an NPM package. Remove dependency on old version. #754

Open tab00 opened 6 years ago

tab00 commented 6 years ago

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.

jurgenfink commented 6 years ago

@tab00 following fixed it for me:

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.

atmospherejs link: https://atmospherejs.com/jaume/useraccounts-core

juliomac commented 6 years ago

I found this fork that changed dependency to npm: https://github.com/abhima9yu/meteor-useraccounts/commit/74a4e48ef11d8b78bffa4d8e6f8a669a39d465a1

Is there anyway to make a Pull request?

xpressabhi commented 5 years ago

Any update?