From afa7c4beb2f6f585c297330f2c1fab50c20bad40 Mon Sep 17 00:00:00 2001 From: Saverio Trioni Date: Wed, 25 Jan 2017 18:26:31 +0100 Subject: [PATCH] Allow addon to work as dependency of another addon --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 55b4283..92a6b72 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,6 @@ module.exports = { included: function included(app) { this._super.included(app); - app.import(app.bowerDirectory + '/chartjs/dist/Chart.js'); + app.import(app.project.bowerDirectory + '/chartjs/dist/Chart.js'); } };