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
Just tried to add this package on Meteor 1.1 and got the error:
Error: Can't find npm module 'bcrypt'. Did you forget to call 'Npm.depends' in package.js within the 'npm-bcrypt' package?
Do I need to manually install bcrypt. I've actually been using your package just by dropping in the mui.css in my stylesheets and the js file in client/compatibility folder. It has been working fine but saw that you have a package now so wanted to install it that way.
The text was updated successfully, but these errors were encountered:
Hmm... I'm not sure why you would be seeing that error. The MUI source code doesn't use npm-bcrypt and I can't find any MUI dependencies that use it either. Also, the Meteor package only consists of mui.min.css and mui.min.js so I'm not sure why Meteor is trying to install node dependencies.
I just tried installing the MUI package in Meteor 1.1 and it seems to work:
$ curl https://install.meteor.com/ | sh
$ meteor create my_cool_app
$ cd my_cool_app/
$ meteor add muicss:mui@=0.0.6
$ meteor
Just tried to add this package on Meteor 1.1 and got the error:
Error: Can't find npm module 'bcrypt'. Did you forget to call 'Npm.depends' in package.js within the 'npm-bcrypt' package?
Do I need to manually install bcrypt. I've actually been using your package just by dropping in the mui.css in my stylesheets and the js file in client/compatibility folder. It has been working fine but saw that you have a package now so wanted to install it that way.
The text was updated successfully, but these errors were encountered: