From 4a104e09d343bb068071276e1f3adc01aaef19b7 Mon Sep 17 00:00:00 2001 From: Erika Pauwels Date: Mon, 1 Oct 2018 14:34:00 +0200 Subject: [PATCH] Add ember-cli-update installation in blueprint --- blueprints/editor-plugin/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/blueprints/editor-plugin/index.js b/blueprints/editor-plugin/index.js index 40ab9b8..78a0062 100644 --- a/blueprints/editor-plugin/index.js +++ b/blueprints/editor-plugin/index.js @@ -5,6 +5,7 @@ module.exports = { afterInstall(options) { // Perform extra work here. this.addAddonToProject('ember-cli-release'); + this.addAddonToProject('ember-cli-update'); return this.addAddonToProject('ember-concurrency'); } };