npm ember-cli 0.2.2
I forgot to wear my Silly Hat ;(

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

0.2.2

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.2 -- 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.2 -- 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
    • updated to ember 1.11.0
    • Upgrade your project's ember-cli version - docs
    • ember init once again works inside an addon.
    • error live-reloading now actually works!
    • npm WARN for makeError and tmpl have been fixed
    • ember-qunit was updated from 0.2.8 -> 0.3.0, this.render() in a test now no-longer returns a jQuery object.
  • Addon Developers

    • ember addon diff
    • Addons now have the ember-disable-prototype-extensions module included by default,
      this ensures add-ons are written in a way that works regardless of the
      consumers prototype extension preference.

    + the following addon API's in has been deprecated:

    • this.mergeTrees -> require('mergeTrees');
    • this.Funnel -> require('broccoli-funnel');
    • this.pickFiles -> require('broccoli-funnel');
    • this.walkSync -> require('walk-sync');
    • this.transpileModules -> require('broccoli-es6modules');

    Rather then relying on them from ember-cli, add-ons should require them via NPM.

    • We now are using broccoli v0.15.3, which is a backwards compatible upgrade,
      but it does expose the new rebuild api, that will soon superseed the read
      api. TL;DR among other things, this paves the path to having a configurable
      tmp directory.

      We recommend broccoli-plugin authors to update as soon as they are able to.

      For more information checkout: new rebuild api

  • Core Contributors

    • Keep being awesome!

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.