forked from ember-animation/ember-animated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
48 lines (38 loc) · 1.37 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
var VersionChecker = require('ember-cli-version-checker');
module.exports = {
name: 'ember-animated',
isDevelopingAddon() {
return process.env.DEV_EMBER_ANIMATED;
},
init() {
if (this._super.init) {
this._super.init.apply(this, arguments);
}
this.versionChecker = new VersionChecker(this);
this.versionChecker.for('ember-cli', 'npm').assertAbove('0.2.0');
// Shim this.import for Engines support
if (!this.import) {
// Shim from https://github.com/ember-cli/ember-cli/blob/5d64cfbf1276cf1e3eb88761df4546c891b5efa6/lib/models/addon.js#L387
this._findHost = function findHostShim() {
var current = this;
var app;
// Keep iterating upward until we don't have a grandparent.
// Has to do this grandparent check because at some point we hit the project.
do {
app = current.app || app;
} while (current.parent.parent && (current = current.parent));
return app;
};
// Shim from https://github.com/ember-cli/ember-cli/blob/5d64cfbf1276cf1e3eb88761df4546c891b5efa6/lib/models/addon.js#L443
this.import = function importShim(asset, options) {
var app = this._findHost();
app.import(asset, options);
};
}
},
included: function() {
this._super.apply(this, arguments);
this.import('vendor/ember-animated.css');
}
};