-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulp.filelist.js
More file actions
57 lines (50 loc) · 1.38 KB
/
gulp.filelist.js
File metadata and controls
57 lines (50 loc) · 1.38 KB
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
var generalAppFiles = [
"./app/**/*.js",
"!./app/app.js",
"!./app/**/{,*/}*.test.js",
"!./app/**/{,*/}*.mock.js",
"!./app/**/{,*/}*.conf.js"
];
module.exports = {
app_files: function () {
'use strict';
// The individual app builds (i.e. dashboard, conferencing, etc.) insert
// the proper ./App.appName.js (i.e. App.conferencing) file at index 0 of the genearalAppFiles array.
return generalAppFiles;
},
/*css_lib_files: function () {
'use strict';
return [
"./bower_components/fontawesome/css/font-awesome.css"
];
},*/
js_lib_src: function () {
'use strict';
return [
//"bower_components/angular/angular.min.js",
//'bower_components/jquery.easing/js/jquery.easing.min.js',
"bower_components/jqBootstrapValidation/dist/jqBootstrapValidation-1.3.7.js",
"bower_components/classie/classie.js",
//"bower_components/bootstrap-sass/assets/javascripts/bootstrap.min.js"
];
},
sass_src: function () {
'use strict';
return [
//'!app/**/*.theme.scss',
'./app/styles/sass/**/*.scss',
'bower_components/bootstrap-sass/assets/stylesheets/**/*.scss'
];
},
image_src: function() {
'use strict';
return [
'./app/img/**/{,*/}*'
];
},
template_src: function() {
return [
'./app/**/*.html'
];
}
};