Skip to content

Instantly share code, notes, and snippets.

@tsubomii
tsubomii / fastboot-migration.md
Last active June 8, 2017 02:03
The ember-cli-fastboot 1.0 migration guide for ember addon authors.

Required dependency update

ember-cli-fastboot 1.0 requires ember-cli version above 2.14.0

Testing guidelines

When you make the changes to make sure your addons are backward compatible for upcoming FastBoot build changes, make sure to test all the usecases as follows:

  1. An app running the current FastBoot double builds. Your app should boot and function correctly in browser and FastBoot.
  2. An app running with the proposed FastBoot build changes here. Your app should boot and function correctly in browser and FastBoot.
  3. An app having ember-cli-fastboot not installed. Make sure the fastboot initializers or vendor files are not running in browser.

What has changed