From 3067db7c02e85713a408a92fbbfd7da2e7a888be Mon Sep 17 00:00:00 2001 From: Stefan Penner Date: Sun, 4 Jun 2017 10:52:34 -0700 Subject: [PATCH] remove global flag. Addons can check via: this.project.addons.find(addon => addon.name === 'ember-cli-fastboot'): this.project.findAddonByName('ember-cli-fastboot'); --- index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.js b/index.js index f187a3bde..abdc58650 100644 --- a/index.js +++ b/index.js @@ -51,10 +51,6 @@ module.exports = { this._appRegistry = app.registry; this._name = app.name; - // set a environment variable to allow addons to use `fastboot-filter-initializers` - // for old versions. - process.env.FASTBOOT_NEW_BUILD = true; - migrateInitializers(this.project); },