-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
32 lines (27 loc) · 889 Bytes
/
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
/* jshint node: true */
'use strict';
var fs = require('fs');
var path = require('path');
var fileExists = function (filePath) {
try {
return fs.statSync(filePath).isFile();
}
catch (err) {
return false;
}
};
// check context of how ember-ag-grid is being used - in an app or running the dummy app
var isApp = fileExists(path.join(__dirname, '../../config/environment.js'));
var configFile = isApp ? '../../config/environment' : './config/environment';
var env = require(configFile)();
module.exports = {
name: 'ember-ag-grid',
included: function(app) {
this._super.included.apply(this, arguments);
if (typeof env.agGrid !== "undefined" && env.agGrid.useEnterprise) {
app.import(app.bowerDirectory + '/ag-grid-enterprise/dist/ag-grid-enterprise.min.js');
} else {
app.import(app.bowerDirectory + '/ag-grid/dist/ag-grid.min.js');
}
}
};