npm ember-cli 0.2.6
Comalapa

latest releases: 5.7.0-beta.0, 5.6.0, 5.6.0-beta.0...
8 years ago

Setup

  1. npm uninstall -g ember-cli -- Remove old global ember-cli
  2. npm cache clean -- Clear NPM cache
  3. bower cache clean -- Clear Bower cache
  4. npm install -g ember-cli@0.2.6 -- Install new global ember-cli

Project Update

  1. rm -rf node_modules bower_components dist tmp -- Delete temporary development folders.
  2. npm install --save-dev ember-cli@0.2.6 -- Update project's package.json to use latest version.
  3. npm install -- Reinstall NPM dependencies.
  4. bower install -- Reinstall bower dependencies.
  5. ember init -- This runs the new project blueprint on your projects directory. Please follow the prompts, and review all changes (tip: you can see a diff by pressing d). The most common source of upgrade pain is missing changes in this step.

Changes

The following changes are required if you are upgrading from the previous
version:

  • Users
    • ember new diff
    • Upgrade your project's ember-cli version - docs
    • ember server can now be started over https. Default ssl
      certificate and ssl key paths are ssl/server.crt and
      ssl/server.key respectively. Custom paths can be added with
      --ssl-cert and --ssl-key #3550.
    • ember test now accepts a reporter option, it passes this option to Testem with the reporter to use [tap|dot|xunit] #4106.
    • app/views is not longer included in the default project blueprint #4083.
    • Added again podModulePrefix to app.js. We still need
      podModulePrefix for the time being, it can be removed again when
      the state of pods has been finalized.
    • New apps include a .watchmanconfig which tells watchman to ignoring tmp dir #4101.
    • Updated ember-data to 1.0.0-beta.18. Install with npm install --save-dev ember-data@1.0.0-beta.18.
    • Unit tests for components are now flagged as such #4177.
  • Addon Developers
    • ember addon diff
    • A new hook is available: treeForAddonTemplates which allows you to specify the templates tree. For more info on how to use this hook see the following issue.
    • Route blueprint now works within addons #4152.
    • A new generator is available, ember g route-addon allows you to create import wrappers for your addon's routes.
  • Core Contributors
    • We started to merge pull-request as part of the quest to improve code quality, keep them coming! #3730.

Community Contributions

Thank you to all who took the time to contribute!

Don't miss a new ember-cli release

NewReleases is sending notifications on new releases.