forked from abuiles/facturas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Brocfile.js
58 lines (50 loc) · 1.09 KB
/
Brocfile.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
49
50
51
52
53
54
55
56
57
58
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp({
fingerprint: {
prepend: 'https://d29bb5msqib8gy.cloudfront.net/facturas-client/'
},
minifyCSS: {
enabled: true,
options: {}
}
});
app.import('vendor/custom-plugins/_ember-devise-simple-auth.js', {
exports: {
'ember-devise-simple-auth': [
'default'
]
}
});
app.import('bower_components/accounting/accounting.js', {
exports: {
'accounting': ['formatMoney']
},
deanonymize: true,
name: 'accounting'
});
app.import('bower_components/momentjs/min/moment-with-langs.min.js', {
exports: {
'moment': [
'default'
]
}
});
app.import('bower_components/rails-csrf/dist/named-amd/main.js', {
exports: {
'rails-csrf': [
'service',
'setCsrfUrl'
]
}
});
app.import('bower_components/chartjs/Chart.js', {
exports: {
'chart': [
'default'
]
}
});
app.import('bower_components/ember-test-helpers/dist/ember-test-helpers.js');
app.import('vendor/custom-plugins/_amdize.js');
module.exports = app.toTree();