I am running a Meteor 1.4.2.3
application and everything has been running fine so far. I have been following the Level Up Tutorials and I've come to a point where I want to add user accounts.
In order to do that I'm using the `okgrow:accounts-ui-react' atmosphere package which can be found here.
I've followed all the steps by running the following 3 lines in the console:
> meteor add okgrow:accounts-ui-react
> npm install --save react-komposer classnames
> meteor add accounts-password
Those commands all ran successfully.
Now when I want to start my Meteor application by running meteor
in the console I get the following error:
Does anyone know what I could be doing wrong?
Things I have tried that haven't solved it:
- Updating all my meteor packages using the
meteor update --all-packages
command - Deleting the node_modules folder and running 'meteor' again.