What is the correct process for upgrading an Ember-cli addon? If I follow the normal process for upgrading an ember app:
npm uninstall -g ember-cli
npm cache clean
bower cache clean
npm install -g [email protected]
rm -rf node_modules bower_components dist tmp
ember install:npm [email protected]
ember install
ember init
It will replace the brocfile with ember-app instead of ember-addon. Will this let it still work as an addon?
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');The addon blueprint still has that content in the Brocfile so it sounds like ember-cli doesn't know it's in an addon directory. Does your addon have have"keywords": ["ember-addon"]in the package.json file? - steveax