forked from abuiles/facturas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrocfile.js
63 lines (55 loc) · 1.28 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
59
60
61
62
63
/* 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/chartjs/Chart.js', {
exports: {
'chart': [
'default'
]
}
});
app.import('vendor/custom-plugins/_amdize.js');
app.import('vendor/fontello/fontello.css');
app.import('vendor/fontello/font/fontello.ttf', {
destDir: 'assets/fonts'
});
app.import('vendor/fontello/font/fontello.eot', {
destDir: 'assets/fonts'
});
app.import('vendor/fontello/font/fontello.svg', {
destDir: 'assets/fonts'
});
app.import('vendor/fontello/font/fontello.woff', {
destDir: 'assets/fonts'
});
app.import('bower_components/picnic/releases/v2.min.css');
module.exports = app.toTree();