This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbundle.config.js
44 lines (44 loc) · 1.54 KB
/
bundle.config.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
module.exports = {
bundle: {
//main: {
// scripts: [
// './dist/spBsCtrls.js'
// ],
// styles: './dist/spBsCtrls.css',
// options: {
// uglify: false, // don't minify js since bower already ships with one
// minCSS: false, // don't minify css since bower already ships with one
// rev: false,
// fileName:'spBs'
// }
//},
vendor: {
scripts: [
'./dist/vendor/lodash.min.js',
'./dist/vendor/jquery.min.js',
'./dist/vendor/moment-with-locales.min.js',
'./dist/vendor/js/bootstrap.min.js',
'./dist/vendor/bootstrap-switch.min.js',
'./dist/vendor/js/select2.min.js',
'./dist/vendor/js/i18n/ru.js',
'./dist/vendor/bootstrap-datetimepicker.min.js',
'./dist/vendor/bootstrap-editable.min.js'
],
styles:[
'./dist/vendor/css/bootstrap.min-scoped.css',
'./dist/vendor/bootstrap-editable-scoped.css',
'./dist/vendor/css/select2.min.css',
'./dist/vendor/select2-bootstrap.css',
'./dist/vendor/bootstrap-datetimepicker.min.css',
'./dist/vendor/bootstrap-switch.min.css'
],
options: {
rev: false
}
}
},
copy:{
src: './dist/vendor/fonts/*.*',
base: './dist/vendor'
}
};