forked from shaialon/ember-admin-dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrocfile.js
101 lines (75 loc) · 3.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp();
// Use `app.import` to add additional libraries to the generated
// output files.
//
// If you need to use different assets in different
// environments, specify an object as the first parameter. That
// object's keys should be the environment name and the values
// should be the asset to use in that environment.
//
// If the library that you are including contains AMD or ES6
// modules that you would like to import into your application
// please specify an object with the list of modules as keys
// along with the exports of each module as its value.
/*****************************
*** Admin LTE Styles
******************************/
// Bootstrap 3.3.2
app.import('vendor/AdminLTE/bootstrap/css/bootstrap.min.css');
// FontAwesome 4.3.0
// app.import('vendor/AdminLTE/plugins/font-awesome/font-awesome.min.css');
// Ionicons 2.0.0
// app.import('vendor/AdminLTE/plugins/ionicons/ionicons.min.css');
// morris chart
app.import('vendor/AdminLTE/plugins/morris/morris.css');
// jvector map
app.import('vendor/AdminLTE/plugins/jvectormap/jquery-jvectormap-1.2.2.css');
// Date Picker
app.import('vendor/AdminLTE/plugins/datepicker/datepicker3.css');
// Daterange picker
app.import('vendor/AdminLTE/plugins/daterangepicker/daterangepicker-bs3.css');
// bootstrap wysihtml5 - text editor
app.import('vendor/AdminLTE/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css');
// Theme style
app.import('vendor/AdminLTE/dist/css/AdminLTE.min.css');
// AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. -->
app.import('vendor/AdminLTE/dist/css/skins/_all-skins.min.css');
// icheck
app.import('vendor/AdminLTE/plugins/iCheck/flat/blue.css');
/*****************************
*** Admin LTE Scripts
******************************/
// Admin LTE uses JQ 2.1.3 , Ember CLI uses 1.11.2 for now.
// Bootstrap 3.3.2 JS
app.import('vendor/AdminLTE/bootstrap/js/bootstrap.min.js');
// jQuery UI 1.11.2
app.import('vendor/AdminLTE/plugins/jQueryUI/jquery-ui-1.11.2.min.js');
// raphael/2.1.0
// app.import('vendor/AdminLTE/plugins/raphael/raphael-min.js');
// Morris.js charts
app.import('vendor/AdminLTE/plugins/morris/morris.min.js');
// Sparkline charts
app.import('vendor/AdminLTE/plugins/sparkline/jquery.sparkline.min.js');
// jvectormap charts
app.import('vendor/AdminLTE/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js');
// jvectormap charts
app.import('vendor/AdminLTE/plugins/jvectormap/jquery-jvectormap-world-mill-en.js');
// jqueryKnob charts
app.import('vendor/AdminLTE/plugins/jqueryKnob/jquery.knob.js');
// daterangepicker
app.import('vendor/AdminLTE/plugins/daterangepicker/daterangepicker.js');
// datepicker
app.import('vendor/AdminLTE/plugins/datepicker/bootstrap-datepicker.js');
// Bootstrap WYSIHTML5
app.import('vendor/AdminLTE/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js');
// iCheck
app.import('vendor/AdminLTE/plugins/iCheck/icheck.min.js');
// Slimscroll
app.import('vendor/AdminLTE/plugins/slimScroll/jquery.slimscroll.min.js');
// FastClick
app.import('vendor/AdminLTE/plugins/fastclick/fastclick.min.js');
// Custom stuff:
app.import('vendor/socket.io/socket.io.min.js');
module.exports = app.toTree();