Setup
npm install -g ember-cli@3.10.1
-- Install new global ember-cli
Project Update
rm -rf node_modules dist tmp
-- Delete temporary development folders.npm install -g ember-cli-update
-- Install Ember CLI update tool globally.- Run
ember-cli-update --to 3.10.1
-- This will update your app or addon to the latest ember-cli release. You will probably encounter merge conflicts that you should resolve in your normal git workflow. - Run
ember-cli-update --run-codemods
-- This will let you pick codemods to run against your project, to ensure you are using the latest patterns and platform features.
Changelog
Blueprint Changes
Community Contributions
- #8645 Update addon and application blueprints to account for Node 6 support being removed. @kellyselden
- #8631 Add CI testing for Node 12. @rwjblue