Skip to content

Instantly share code, notes, and snippets.

@jvidalba1
Last active August 29, 2015 14:17
Show Gist options
  • Save jvidalba1/ed338e180c79a5821514 to your computer and use it in GitHub Desktop.
Save jvidalba1/ed338e180c79a5821514 to your computer and use it in GitHub Desktop.
Ember errors
  • 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 ember-cli-htmlbars@0.6.0
  • 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment