Skip to content

Commit b7178b0

Browse files
committed
Add chart.js dependency in vendor folder
1 parent 28e4e52 commit b7178b0

File tree

2 files changed

+12761
-3
lines changed

2 files changed

+12761
-3
lines changed

index.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33

44
module.exports = {
55
name: 'ember-cli-chart',
6-
included: function included(app) {
7-
this._super.included(app);
8-
app.import(app.project.nodeModulesPath + '/chart.js/dist/Chart.js');
6+
included: function(app, parentAddon) {
7+
this._super.included.apply(this, arguments);
8+
var target = (parentAddon || app);
9+
target.import('vendor/Chart.js');
910
}
1011
};

0 commit comments

Comments
 (0)