ember-cli / ember-compatibility-helpers

Helpers that allow you to write backwards compat Ember addons
MIT License
24 stars 20 forks source link

refactor(init): Remove incorrect addon init #9

Closed pzuraq closed 6 years ago

pzuraq commented 6 years ago

A recent change was made on the incorrect assumption that addons only ran their included method once, based on a bug in an addon that did not correctly call the _super.included. This reverts to the previous structure, where included is used to register the transform.

The previous change did not introduce an immediate regressions, it just makes it less clear as to what is going on.