Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 539 Bytes

MIGRATIONS.md

File metadata and controls

30 lines (24 loc) · 539 Bytes

Migrations

v8 to v9

To upgrade to v9, please add "store" to the engine service dependencies like so:

// app/app.js

constructor(...args) {
  super(...args);

  this.engines = {
    "ember-alexandria": {
      dependencies: {
        services: [
          "session",
          "intl",
          "notification",
          "fetch",
          "alexandria-config",
          "store", // new
        ],
      },
    },
  };
}

And run ember generate ember-alexandria to create the required app re-exports for ember-data.