- ERROR >
ember server
Missing template processor
Error: Missing template processor
Solution: "I read through this announcement - http://emberjs.com/blog/2014/12/08/ember-1-9-0-released.html."
npm uninstall --save-dev broccoli-ember-hbs-template-compiler
npm install --save-dev [email protected]
- ERROR >
ember server
Cannot find module '/Users/jvidalba/Documents/Proyectos/Ember/ember-cli-101-book/bower_components/ember/bower.json'
Error: Cannot find module '/Users/jvidalba/Documents/Proyectos/Ember/ember-cli-101-book/bower_components/ember/bower.json'
Solution: "bower is a package manager like npm, see bower.io. you need to install bower globally and then install the bower modules listed in bower.json in the client folder"
npm install -g bower
rm -rf node_modules
rm -rf bower_components
npm install
bower install