forked from phildionne/golden-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
142 lines (129 loc) · 5.11 KB
/
Gruntfile.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
module.exports = function (grunt)
{
"use strict";
// Project configuration.
grunt.initConfig(
{
// metadata
pkg: grunt.file.readJSON('package.json'),
banner: '/*!\n' +
'' +
'*/\n',
jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
// clean /dist/ folder
clean: {
dist: ['./dist/**/*']// clean ./dist/ folder
},
// concat bootstrap JS files (take from bootstrap#2.3.2 Makefile)
concat: {
options: {
// banner: '<%= jqueryCheck %>',
stripBanners: false
},
bootstrap: {
src: [// bootstrap JS
'./bower_components/bootstrap/js/bootstrap-transition.js',
'./bower_components/bootstrap/js/bootstrap-alert.js',
'./bower_components/bootstrap/js/bootstrap-button.js',
'./bower_components/bootstrap/js/bootstrap-carousel.js',
'./bower_components/bootstrap/js/bootstrap-collapse.js',
'./bower_components/bootstrap/js/bootstrap-dropdown.js',
'./bower_components/bootstrap/js/bootstrap-modal.js',
'./bower_components/bootstrap/js/bootstrap-tooltip.js',
'./bower_components/bootstrap/js/bootstrap-popover.js',
'./bower_components/bootstrap/js/bootstrap-scrollspy.js',
'./bower_components/bootstrap/js/bootstrap-tab.js',
'./bower_components/bootstrap/js/bootstrap-typeahead.js',
'./bower_components/bootstrap/js/bootstrap-affix.js'
],
dest: './dist/js/bootstrap.js'
}
},
// copy fonts, jquery.js
copy: {
fonts: {
expand: true,
cwd: './bower_components/bootstrap/img/',
src: ['*.png'],
dest: 'dist/img/'
},
js: {
expand: true,
cwd: './bower_components/jquery/',
src: ['jquery.js', 'jquery.min.js'],
dest: './dist/js/'
}
},
// uglify bootstrap.js
uglify: {
options: {
banner: '/*!\n' +
' * Bootstrap.js by @fat & @mdo\n' +
' * Copyright 2012 Twitter, Inc.\n' +
' * http://www.apache.org/licenses/LICENSE-2.0.txt\n' +
' */\n',
report: 'min'
},
bootstrap: {
files: {
'./dist/js/bootstrap.min.js': ['<%= concat.bootstrap.dest %>']
}
}
},
// compile .less files to CSS; minify CSS files
recess: {
options: {
compile: true
},
bootstrap: {
files: [
{// ./ext/golden*.less -> ./ext/css/[filename].css
expand: true,
cwd: './ext/',
src: ['**/golden*.less'],
dest: './dist/css/',
ext: '.css'
}
]
},
min: {
options: { compress: true },
files: [
{// ./ext/golden*.less -> ./ext/css/[filename].min.css
expand: true,
cwd: './ext/',
src: ['**/golden*.less'],
dest: './dist/css/',
ext: '.min.css'
}
]
}
},
// watch .less files in /ext/ folder
watch: {
recess: {
files: './ext/*.less',
tasks: ['recess']
}
}
}
);
// plugins
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-recess');
// JS distribution task
grunt.registerTask('dist-js', ['copy:js', 'concat', 'uglify']);
// CSS distribution task
grunt.registerTask('dist-css', ['recess']);
// Fonts distribution task
grunt.registerTask('dist-fonts', ['copy:fonts']);
// Full distribution task
grunt.registerTask('dist', ['clean', 'dist-css', 'dist-fonts', 'dist-js']);
// Default task
grunt.registerTask('default', ['dist']);
};